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.
我在/home/目录中有一个 shell 脚本。我想通过使用网页来执行它。网络服务器位于/var/www/.我想知道如何使用 PHP 从主页内执行 shell 脚本?
/home/
/var/www/.
我正在使用 Ubuntu 服务器。
使用php 执行功能:
exec('/path/to/shell/script');
但是,这只有在 safe_mode 被禁用、php 对此类文件夹和文件具有权限或在您的 basedir 中定义时才有效。