在同一页面上填充分页数据

时间:2018-08-01 10:55:14

标签: php wordpress oop goutte

我有下面的代码

$text = [];

$crawler->filter('#pagination-bottom .ui-pagination-navi a')->each(function ($node) use (&$text) {
$text[] = $node->text();
return $text;
});

foreach ($text as $texts) {
echo '<a class="pagination" href="' . "https://www.example.com/af/" . 
$_POST['acme-message'] . ".html?SearchText=" . $_POST['acme-message'] . '&page=' . $texts . '">' . $texts . '</a>';
}

acme消息仅来自此输入-> <input type="text" name="acme-message" value="" />

我要做什么:

Foreach链接将我带到实际站点,我不希望发生这种情况。

我希望它从单击的分页页面链接(即第2页)中提取分页的数据。然后单击一次,则显示该单击的页面中的数据,并且不要转到该站点。

希望这是有道理的。

谢谢,杰克。

0 个答案:

没有答案