Skip to content

A 'pretty good' mechanize-like php library for managing cookies and submitting forms.

Notifications You must be signed in to change notification settings

dochoa/PGBROWSER

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PGBrowser

A 'pretty good' mechanize-like php library for managing cookies and submitting forms.

Read the Documentation

require 'pgbrowser.php';

$b = new PGBrowser();
$page = $b->get('http://www.google.com/');
$form = $page->form();
$form->set('q', 'foo');
$page = $form->submit();
echo $page->title;

Now do something with $page->html or query it with $page->xpath->query()

PGBrowser will also let you query the page with phpquery, simple-html-dom or xpath:

require 'pgbrowser.php';
require 'phpquery.php';
$browser = new PGBrowser('phpquery');
$page = $browser->get('http://www.google.com/search?q=php');
foreach($page->search('li.g') as $li){
  echo $page->at('a', $li)->text() . "\n";
}

New - PGBrowser can now cache requests to disk and reuse them on subsequent requests to save network traffic. Cached responses go into a folder called 'cache'

$browser->useCache = true; // turn on cacheing
$browser->useCache = false; // turn off cacheing

About

A 'pretty good' mechanize-like php library for managing cookies and submitting forms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages