-2
我該如何去從終端窗口運行腳本@http://www.domain.com/php/script.php/
。另外,我需要傳遞一個變量,$var1 = "string"
。我將如何做到這一點?從終端運行遠程php腳本
我該如何去從終端窗口運行腳本@http://www.domain.com/php/script.php/
。另外,我需要傳遞一個變量,$var1 = "string"
。我將如何做到這一點?從終端運行遠程php腳本
您可以使用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
Curl或wget或許 – 2016-01-23 08:24:57