标签: php
我尝试使用shell_exec传递文本。
$message="I go to school"; shell_exec("nohup php -q sendmail.php $picture $message");
但是当我使用argv [2]时,我只得到一条消息。 有什么问题?
答案 0 :(得分:4)
你必须添加"对于文本
shell_exec("nohup php -q sendmail.php $picture \"$message\"");