简单教程
提交运行
代码编辑器:
<?php function myfunction($v) { return($v*$v); } $a=array(1,2,3,4,5); print_r(array_map("myfunction",$a));
运行结果: