我想创建一个包含包含功能的页面。此页面应该抓取另一个站点,并且可以使用此函数 str_replace 更改文本或代码。我希望这是可能的。我已经编写了这段代码,但不幸的是它不起作用:
<?php
$text = include('http://www.example.com/index.html');
$text = str_replace("<div id=\"hercss\">Hello.</div>", "<div id=\"mycss\">Welcome!</div>", $text);
echo $text;
?>
也许你有解决方案?您将不胜感激。