php程序由哪几部分组成// 代码function sum(int $a, int $b) { // 返回结果给调用者 return "{$a} + {$b} = " . ($a + $b);}// 执行,将执行结果打印输出echo su...