gpt4 book ai didi

php - 如何将多个html页面解析成一个字符串?

转载 作者:行者123 更新时间:2023-11-27 23:12:22 26 4
gpt4 key购买 nike

我正在尝试将多个 html 页面的代码解析为一个字符串,使其像一个缓冲区,并读取该字符串以找到输入的特定文本,一切正常,唯一的问题是我无法将页面加载到字符串中并在之后读取。

$url = 'http://www.test.com/';
$start = 0;
$end = 1120;

$counter = $start;
while ($counter <= $end) {

/*** a link to search - add the counter value and html to the end of url ***/
$link = "$url$counter.html";
/*** get the links ***/
$data = file_get_contents($link);
$data = $data.$data;
// echo $data;

$counter = $counter + 15;

}

在这种情况下有人可以帮助我吗?

问候

最佳答案

$url = 'http://www.test.com/';
$start = 0;
$end = 1120;
$counter = $start;
$data="";
while ($counter <= $end) {
$link = "$url$counter.html";
$res = file_get_contents($link);
If ($res!==false){
$data .=$res;
}
$counter = $counter + 15;

}

关于php - 如何将多个html页面解析成一个字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45313795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com