如何使用php .my地址动态此代码是可变的
<?php
$pagecontents = file_get_contents("http://google.com");
$html = htmlentities($pagecontents);
echo $html;
?>
答案 0 :(得分:0)
我不确定,我明白了,目标是什么,但如果你想做同样的事情,你已经在问题中展示但有多个网站,那么你可以用一个简单的循环来做到: / p>
$sites = ["aa.com/a", "aa.com/b"] // array(...) with earlier PHP versions
foreach($sites as $url) {
$pagecontents = file_get_contents($url);
echo htmlentities($pagecontents);
}
如果这不是你想要的,那么请重构这个问题,这清楚地解释了你想做什么!