我傳遞了一些數據後根據交數據來執行的功能,以確定這是否應該執行我試圖使用以下命令:有沒有辦法檢查一個類中是否存在函數?
$SP = new StoredProcedure();
if(function_exists($SP->$_POST['function']))
{
$SP->$_POST['function']();
}
else
{
echo 'function does not exist.';
}
很不幸,這傳遞了以下錯誤:
Notice: Undefined property: StoredProcedure::$getFormList in C:\DWASFiles\Sites\junglegym\VirtualDirectory0\site\wwwroot\wp-content\plugins\qcore\qcore_waitress.php on line 353 function does not exist.
我敢肯定,這個功能的確存在,當我沒有function_exists()
執行它有沒有一種方法來檢查,如果當它是一個類內部存在的功能?
非常好!非常感謝你! – Codingo