php将变量传递给shell命令

时间:2017-11-28 20:29:50

标签: php html shell

我想将PHP代码中的两个值传递给shell命令行。像这样:

<?php
$myhost="myhost";
$mydir="mydir";
$runcommand = shell_exec("ssh $myhost du -h $mydir");
echo "<pre>$runcommand</pre>";

&GT;

我测试了不同的方法而没有运气。如果我对这些值进行硬编码就像魅力一样。这样:

echo "<pre>$myhost,$mydir</pre>";

显示传递的两个值。

我错过了什么?

感谢您的帮助。

韦恩

0 个答案:

没有答案