一、函数的声明//函数的声明function Sum(int $a ,int $b):int{ return $a *$b;};//函数的调用echo Sum(1,2) ,''; 二、函数的类型1.自定义函数function getCount(...