修改php配置文件,也就是 php.ini ,
在 disable_functions 中去掉想开放的函数即可。
例如取消 exec:
disable_functions = passthru,system,chroot,chgrp,chown,popen,proc_open,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru
只要在 disable_functions 中删除该函数名,并重启 php 即可。