Home > Backend Development > PHP Tutorial > php调用远程url问题

php调用远程url问题

WBOY
Release: 2016-06-23 14:24:06
Original
923 people have browsed it

请问下,假如:$url = http://www.xx.com/?param=yyyyyyyyy; 用file_get_contents方式调用没反应。我的param长度很长。大概是3000个手机号以字符串形式连接起来。请问file_get_contents调用url参数长度有限制吗?有没有更好的调用方式?我现在做的是一个调用远程接口发送短信,有没有更好更安全的调用方式?


回复讨论(解决方案)

allow_url_fopen有打开么?

推荐用cURL

GET方式,URL地址的长度是有限制的。这么长,肯定会有问题。

远程接口应该有说明的。
可以使用POST方式。

http://blog.csdn.net/jdgdf566/article/details/12657077

socket和curl都可以吧

也许对方禁止了,你可以用curl来模拟浏览器的打开操作。

http://blog.csdn.net/jdgdf566/article/details/12707945

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template