我如何从终端窗口运行脚本@ http://www.domain.com/php/script.php/
。另外,我需要传递一个变量$var1 = "string"
。我该怎么做?
答案 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¶m2=bar > /dev/null