首先需要开启严格模式:
declare(strict_types = 1);
严格模式下,形参和返回值可加限制。对返回值的限制需要在参数的()后面加上引号加类型限制即可,例:
function demo(int $v):int{ return 1; }