为什么function_exists中需用下划线。
<?php
function func() {
echo 'exists';
}
$name = 'func';
if (function_exists($name)); { //判断函数是否存在
$name();
}
<?php
function func() {
echo 'exists';
}
$name = 'func';
if (function_exists($name)); { //判断函数是否存在
$name();
}
2017-07-11
举报