我是新手使用php和wordpress,请参阅this article添加到wordpress的路由,代码如下:
my_callback
如果在客户端,我使用phantomjs runner.js | ffmpeg -f image2pipe -i pipe:.png -c:a copy -c:v libx264 -f flv rtmp://localhost/mystream
在phantomjs runner.js | ffmpeg -f image2pipe -i pipe:.png -f lavfi -i anullsrc -c:v libx264 -c:a aac -f flv rtmp://localhost/mystream
中,如何获取请求网址和请求正文
答案 0 :(得分:0)
我找到了解决方案:
获取请求网址:
$this_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"
获取请求正文(仅适用于发布请求)
file_get_contents('php://input')