我正在尝试使用 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;
}
我得到的只是一个空数组。