首先,我是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吗?
答案 0 :(得分:-1)
<强>解决方案:强>
更改:
$html = file_get_contents('http://www.example.com/');
到
$html = file_get_contents($_GET["url"]);
作品! :)