我正在使用 exec() 来执行文件。我需要传递的参数之一是字符串。
shell_exec('/home/technoworld/Videos/LinSocket/client "Hi hello"');
这很好用!
但是当我将字符串放入 var ie $s="Hi hello" 和
'shell_exec('/home/technoworld/Videos/LinSocket/client . "$s"')`. It does not works. If
'shell_exec('/home/technoworld/Videos/LinSocket/client . $s')' goes in infinite wait!
知道如何将 $s 传递给函数吗?