如何在命令行上使用PHP来运行jpegoptim?

时间:2015-12-20 00:58:14

标签: php shell putty shell-exec

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);
?>

但它不起作用。有人可以帮忙吗?

0 个答案:

没有答案