gpt4 book ai didi

使用 Goutte 抓取时 PHP 返回数组

转载 作者:可可西里 更新时间:2023-11-01 00:31:01 25 4
gpt4 key购买 nike

我正在尝试使用 goutte 返回一组项目,我可以将它们打印出来,但我希望它们在一个数组中,就像 API 一样。这是示例代码。我正在使用 Laravel 5.1。

public function index()
{
$posts = array();
$client = new Client();
$crawler = $client->request('GET', 'http://www.icetimux.com');

$crawler->filter('h2 > a')->each(function ($node) use ($posts){
// print $node->text(); //this prints them, needs to return as an array :(
array_push($posts, $node->text());
});
return $posts;
}

我得到的只是一个空数组。

最佳答案

哈哈!我做到了!检查一下!

public function index()
{
$client = new Client();
$crawler = $client->request('GET', 'http://www.icetimux.com');

return $result = $crawler->filter('h2 > a')->each(function ($node){
return $posts[] = $node->text();
});
}

关于使用 Goutte 抓取时 PHP 返回数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31269162/

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