<?php function func1($x,$y,$z){ $s1=$x+$y ; $s2=$x-$y; $z($s1,$s2); } func1(3,4,function($m1,$m2);{ echo "m1=$m1,m2=$m2"; }); ?> 查看完整描述