摘要:
function useFunc($func){$func("i am nonamed");}function myfunc1($str){echo $str." ,how are you?<br>";}function myfunc2($str){echo $str." ,hello the world!<br>";}useFunc("myfunc1");useFunc("myfunc2");//直接把 函数名字赋值给一个变量~ 然后直接调用变量代替函数名字 变量名(参 阅读全文