直接调用就可以呀,例子:function f1($s){ echo $s.$s."\n"; } function f2(){ f1('hello'); f1('world'); } //主程序f2();