Home >Backend Development >PHP Tutorial >在浏览器输入一个网址,返回的数据,如何赋值给一个自己定义的变量?

在浏览器输入一个网址,返回的数据,如何赋值给一个自己定义的变量?

WBOY
WBOYOriginal
2016-06-23 14:18:131108browse

在浏览器输入一个网址,返回的数据,如何赋值给一个自己定义的变量?

比如,我输入一个网址http://test.com/abc?abc=123

然后浏览器上面看到的是123321
我怎么把在浏览器里面看到这些内容赋值给一个变量。。。


回复讨论(解决方案)

$aa=file_get_contents('http://test.com/abc?abc=123');

补充一下#1,你得到的不是浏览器上看到的内容,而是“查看源代码”看到的内容

Statement:
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