标签: php shell putty shell-exec
在putty命令行中,我使用以下代码:
putty
jpegoptim --max=75 /home/testuser/public_html/img/test.jpg
效果很好。然后我尝试使用PHP命令行界面使用此代码,就像这样。
<?php $command = 'jpegoptim --max=75 /home/testuser/public_html/img/test.jpg'; shell_exec($command); ?>
但它不起作用。有人可以帮忙吗?