我想在另一个 (Y) 中包含一个 html 文档 (X) 的一部分。
有:
<div id="cmform">
....
....
</div>
在 html 文档 X 中,我需要将它包含在 html 文档 Y 的 div 中。我开始阅读 PHP 文档并找到了有关“file_get_contents”函数的信息。如果我做:
<?php
$a = file_get_contents("http://site.com/document.html");
echo ($a);
?>
我得到了整个页面,但我不知道如何...将其缩小到那个 div...