这是我现在使用的代码
<?php
$url = 'http://www.PULLDATADOMAIN.Com/Here';
$Stuff = 'Wow im not a complete idiot';
$After = 'This is not what im doing';
$contents = file_get_contents($url);
echo $contents;
?>
好的,到目前为止,这很原始。它所做的只是从 $url 中提取 html 源代码并将其显示在页面上。
但我希望它做的是拉那个 html,然后搜索它在哪里找到变量 $After
然后输出/回显 $contents 的前半部分,然后输出$mystuff
,然后输出$contents
.