(PHP)file_get_contents - 问号后的内容网址?

时间:2017-06-01 10:13:06

标签: php curl

首先,我是PHP的新手。我有以下代码片段,它运行得很好。

<?php

$html = file_get_contents('http://www.example.com/');
preg_match_all( '|<img.*?src=[\'"](.*?)[\'"].*?>|i',$html, $matches ); 


foreach ($matches[1] as $match) { 
    echo '<img src="' . $match . '" />';
}
?>

现在我想在文件名中的问号之后添加file_get_contents网址,如:

http://www.example.com/getfile.php?http://www.url.com/images/

怎么做?这是cURL吗?

1 个答案:

答案 0 :(得分:-1)

<强>解决方案:

更改:

$html = file_get_contents('http://www.example.com/');

$html = file_get_contents($_GET["url"]);

作品! :)