//integer 是集合 ℤ = {..., -2, -1, 0, 1, 2, ...} 中的某个数。
//int 只是整数
function show($id) : int
{
return $id;
}
function show($id) : integer
{
return $id;
}
上述例子中 第一个执行成功 ,但是对于第二个而言 要求返回一个integer实例
链接:https://stackoverflow.com/questions/10636321/php-difference-between-int-and-integer