「Php/php7」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→型一覧) |
(→型一覧) |
||
| 行7: | 行7: | ||
==型一覧== | ==型一覧== | ||
スカラー | スカラー | ||
| − | * | + | *bool |
*int | *int | ||
*float | *float | ||
2018年5月17日 (木) 14:34時点における版
php7はスカラー型を指定できる
public function modUser(array $user): array
{
return $user;
}
型一覧
スカラー
- bool
- int
- float
- double
- string
オブジェクト
- array
- object
- callable
- resource
- null
null許容
function sum(int $a, int $b): ?int
{
return $a + $b;
}
