我使用exec()來執行文件。我需要傳遞的一個參數是字符串。如何將字符串變量傳遞給php函數?
shell_exec('/home/technoworld/Videos/LinSocket/client "Hi hello"');
這工作正常!
但是,當我把字符串轉換成無功即$ S =「你好你好」和
'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的功能?
PHP基本語法規則:' ''引用的字符串不會**解釋變量LES。你正在傳遞'$'和's'到shell。 –