在 PHP 中,如何检查函数是否存在?

2022-08-30 09:50:22

如何检查PHP中是否已经存在该函数?my_function


答案 1

使用function_exists

if(function_exists('my_function')){
    // my_function is defined
}

答案 2

http://php.net/manual/en/function.function-exists.php

<?php
  if (!function_exists('myfunction')) {

     function myfunction()
     {
       //write function statements
     }

}
 ?>

推荐