打印PHP脚本对客户端的响应

时间:2016-05-05 21:21:52

标签: php shell http curl server

我有这个.sh单行脚本:

curl http://example.com/script.php
服务器上的

script.php如下所示:

echo "hello"

如何修改.sh脚本以捕获script.php的输出?

1 个答案:

答案 0 :(得分:0)

  

如何修改.sh脚本以捕获script.php的输出?

您可以在如下变量中捕获它:

MY_VAR=$(curl -s http://example.com/script.php)

使用-s阻止进度显示在stdout中。从这里,您可以使用$MY_VAR来控制输出。