从终端运行远程php脚本

时间:2016-01-23 07:58:21

标签: php

我如何从终端窗口运行脚本@ http://www.domain.com/php/script.php/。另外,我需要传递一个变量$var1 = "string"。我该怎么做?

1 个答案:

答案 0 :(得分:3)

您可以使用curl或wget来运行这些脚本,例如

curl --silent http://www.domain.com/php/script.php > /dev/null

至于参数,您可以将它们作为$ _GET参数传递,例如

curl --silent http://www.domain.com/php/script.php?param1=foo&param2=bar > /dev/null