修改php.ini檔案停用函數的方法是,將disable_functions選項設定為【disable_functions= phpinfo,dl, exec, system】,依需求停用函數即可。
本文操作環境:windows10系統、php 7.3、thinkpad t480電腦。
在php中,我們是可以透過修改php.ini配置文件,來實現禁用函數目的的。
php.ini 檔案裡有個 disable_functions 開關選項,此選項可關閉一些危險的函數,例如system,exec 等。例如: disable_functions = phpinfo , 如果在檔案中呼叫phpinfo() 函數,那麼在error_reporting 開啟的情況下,會提示以下錯誤:
Warning: phpinfo() has been disabled for security reasons
屏蔽函數實例:
disable_functions= phpinfo,dl, exec, system
相關建議: php教學
以上是修改php.ini檔案停用函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!