php中需要禁用以下函数来提高安全性 打开php.ini  找到 disable_functions .然后禁用以下函数

[C] 纯文本查看 复制代码

1
disable_functions = pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority, eval, popen, passthru, exec, system, shell_exec, proc_open, proc_get_status, chroot, chgrp, chown, ini_alter, ini_restore, dl, pfsockopen, openlog, syslog, readlink, symlink, popepassthru, stream_socket_server, fsocket, chdir

相关文章:

  • 2021-12-18
  • 2021-12-15
  • 2021-06-27
  • 2021-09-19
  • 2022-12-23
  • 2021-07-12
  • 2021-05-26
猜你喜欢
  • 2021-11-12
  • 2021-11-10
  • 2022-12-23
  • 2021-12-22
  • 2021-09-28
相关资源
相似解决方案