首先,我是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 URL,例如:
http://www.example.com/getfile.php?http://www.url.com/images/
如何做?这是卷发吗?
解决方案:
更改:
$html = file_get_contents('http://www.example.com/');
to
$html = file_get_contents($_GET["url"]);
有效!:)