日期:2014-05-17  浏览次数:20550 次

看discuz发现了php的一个过瘾的函数调用方法
<?php

function myecho($data){
	echo $data;
}
$myfun="myecho";

$myfun("some text");

?>
?