代码问题,我是小白
<?php
function func() {
echo 'exists';
}
$name = 'func';
if (function_exsits($name) ) { //判断函数是否存在
$name();
echo 'exists';
}
报错
<?php
function func() {
echo 'exists';
}
$name = 'func';
if (function_exsits($name) ) { //判断函数是否存在
$name();
echo 'exists';
}
报错
2016-08-19
举报