使用shell_exec传递文本变量

时间:2016-10-11 12:40:33

标签: php

我尝试使用shell_exec传递文本。

$message="I go to school";

shell_exec("nohup php -q sendmail.php $picture $message");

但是当我使用argv [2]时,我只得到一条消息。 有什么问题?

1 个答案:

答案 0 :(得分:4)

你必须添加"对于文本

shell_exec("nohup php -q sendmail.php $picture \"$message\"");