ホームページ >php教程 >php手册 >php Yii: 出现undefined offset 或者 undefined index解决方案

php Yii: 出现undefined offset 或者 undefined index解决方案

WBOY
WBOYオリジナル
2016-06-06 19:58:382012ブラウズ

exec()函数无法使用 程序报错:Warning:exec()hasbeendisabledforsecurityreasonsin 原因:在 php .ini中存在disable_functions配置,默认配置中,cli执行函数都是被禁止的,如果需要的话,需要在php.ini中将disable_functions=exec,popen,system….,将你需

exec()函数无法使用

程序报错:Warning: exec() has been disabled for security reasons in

原因:在php.ini中存在 disable_functions配置,默认配置中,cli执行函数都是被 禁止的,如果需要的话,需要在php.ini中将 disable_functions = exec , popen, system …. ,将你需要执行的函数从列表中删掉在重启apache即可 。

完全是配置的问题。

php-apache2handler.ini

php.ini

disable_functions = proc_open, popen, exec, system, shell_exec, passthru


声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。