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.
我有一个名为“resize”的调整大小的脚本这是脚本:
<? echo exec('resize'); ?>
此页面位于我的 /var/www/site/resize.php 中,resize 命令位于 /bin/resize 中,它由 root 拥有,权限为 mod 777 但是,该命令没有被执行。请让我知道我需要什么。
我也尝试过使用调整大小脚本的绝对路径
echo exec('/bin/resize');
尝试反引号运算符 ` 或 shell_exec()
如果你在 linux 上:
exec('php -q /bin/resize.php');