我們只要在php教程.ini增加
disable_functions =phpinfo
php.ini裡引入了一項功能disable_functions , 這個功能比較有用,可以用它禁止一些函數。比如在php.ini裡加上disable_functions = passthru exec system popen 那麼在執行這些函數的時候將會提示warning: system() has been disabled for security reasons,同時程序終止運行
更多詳細
查找disable_functions然後用下面的替換
disable_functions =phpinfo,exec,passthru,shell_exec,system,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source