Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要授予 php 访问权限以重新加载 nginx。该命令是nginx -s reload这样的,下面的 sudoers 文件中的条目是否正确?
nginx -s reload
www-data ALL=NOPASSWD: nginx -s reload
那么<?php exec('sudo nginx -s reload'); ?>shell_exec 会是要使用的函数吗?
<?php exec('sudo nginx -s reload'); ?>
谢谢
我会使用 nginx 的绝对路径,但你的语法看起来是正确的。你会用shell_exec()
shell_exec()