WHMCS挂钩将变量传递给shell脚本

时间:2015-10-13 11:42:41

标签: php shell hook whmcs

我需要将2个变量从WHMCS PHP钩子脚本传递到另一个shell脚本,如下所示:(变量是$domain$email

$output = shell_exec('/scripts/clone-wp2.sh $Email $domain');

脚本被执行但变量没有传递给shell,尽管它们有值,在/scripts/clone-wp2.sh $ 1和$ 2中有空值。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

尝试使用双引号,如下所示:

$output = shell_exec("/scripts/clone-wp2.sh $Email $domain");

根据文档,您不能将内联变量用于单引号。

来源