Skip to content

Instantly share code, notes, and snippets.

@paolomainardi
Created August 5, 2014 20:57
Show Gist options
  • Save paolomainardi/98799286fddf7c469e6e to your computer and use it in GitHub Desktop.
Save paolomainardi/98799286fddf7c469e6e to your computer and use it in GitHub Desktop.
<?php
require_once 'goutte.phar';
use Goutte\Client;
$client = new Client();
$crawler = $client->request('GET', 'http://dbunico20.beniculturali.it/DBUnicoManagerWeb/dbunicomanager/searchPlace?modulo=luoghi&tipologiaLuogo=1');
$crawler->filter('mibac metainfo workflow')->each(function ($node) {
print $node->text();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment