下面由composer教程欄目給大家介紹php運(yùn)行時(shí)composer dump-autoload 安全替代,希望對(duì)需要的朋友有所幫助!
PHP 運(yùn)行時(shí)composer dump-autoload 安全替代
-
替代exec或者system函數(shù)
建議禁用運(yùn)行時(shí)啟用系統(tǒng)相關(guān)函數(shù),防止代碼注入攻擊
-
使用自動(dòng)加載即可
一下以遷移文件記載為例:
spl_autoload_register(function?($class_name)?{ ???$file_name?=?database_path("seeds/{$class_name}.php"); ???if?(is_file($file_name))?{ ???????require_once?$file_name; ???} });
? 版權(quán)聲明
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載。
THE END
喜歡就支持一下吧
相關(guān)推薦