file_get_contents()不使用$ _REQUEST变量

时间:2017-07-22 19:54:48

标签: php request file-get-contents

我有一个php脚本,它使用$ _REQUEST($query = $_REQUEST['query'];)从表单中获取一个变量,并从https://en.wikipedia.org/wiki/$query获取内容(并将结果记入维基百科)。

问题是维基百科页面的file_get_contents();仅在我设置$query = "custom string, not requested one";时有效,但当我尝试$_REQUEST ed字符串时,它会返回一个空字符串。

有人能为此找到解决方案吗?

谢谢,Domi

1 个答案:

答案 0 :(得分:0)

确保您在$query变量中获得价值,然后将您要求的网址设为

$query = $_REQUEST['query'];
$url="https://en.wikipedia.org/wiki/".$query;

然后使用file_get_contents()作为

$result=file_get_contents($url);