function add1($a,$b){ echo 'a和b的值为'. $a+$b ; } add1(12,14);
Change to function add1($a,$b){ echo 'The values of a and b are'. intval($a) intval($b);}add1(12,14);
Change to function add1($a,$b){ echo 'The values of a and b are'. intval($a) intval($b);}add1(12,14);