我需要将2个变量从WHMCS PHP钩子脚本传递到另一个shell脚本,如下所示:(变量是$domain
和$email
)
$output = shell_exec('/scripts/clone-wp2.sh $Email $domain');
脚本被执行但变量没有传递给shell,尽管它们有值,在/scripts/clone-wp2.sh $ 1和$ 2中有空值。
我该怎么做?
答案 0 :(得分:0)
尝试使用双引号,如下所示:
$output = shell_exec("/scripts/clone-wp2.sh $Email $domain");
根据文档,您不能将内联变量用于单引号。
来源: