发布于 2015-08-27 16:27:57 | 315 次阅读 | 评论: 0 | 来源: 网络整理
The DomCrawler component eases DOM navigation for HTML and XML documents.
注解
While possible, the DomCrawler component is not designed for manipulation of the DOM or re-dumping HTML/XML.
You can install the component in 2 different ways:
symfony/dom-crawler
on Packagist);The Crawler
class provides methods to query and manipulate HTML and XML documents.
An instance of the Crawler represents a set (SplObjectStorage
) of DOMElement
objects, which are basically nodes that you can traverse easily:
use SymfonyComponentDomCrawlerCrawler; $html = <<<'HTML' <!DOCTYPE html> <html> <body> <p class="message">Hello World!</p> <p>Hello Crawler!</p> </body> </html> HTML; $crawler = new Crawler($html); foreach ($crawler as $domElement) { print $domElement->nodeName; }
Specialized Link
and Form
classes are useful for interacting with html links and forms as you traverse through the HTML tree.
注解
The DomCrawler will attempt to automatically fix your HTML to match the official specification. For example, if you nest a <p>
tag inside another <p>
tag, it will be moved to be a sibling of the parent tag. This is expected and is part of the HTML5 spec. But if you’re getting unexpected behavior, this could be a cause. And while the DomCrawler isn’t meant to dump content, you can see the “fixed” version of your HTML by dumping it.
Using XPath expressions is really easy:
$crawler = $crawler->filterXPath('descendant-or-self::body/p');
小技巧
DOMXPath::query
is used internally to actually perform an XPath query.
Filtering is even easier if you have the CssSelector component installed. This allows you to use jQuery-like selectors to traverse:
$crawler = $crawler->filter('body > p');
Anonymous function can be used to filter with more complex criteria:
use SymfonyComponentDomCrawlerCrawler; // ... $crawler = $crawler ->filter('body > p') ->reduce(function (Crawler $node, $i) { // filter even nodes return ($i % 2) == 0; });
To remove a node the anonymous function must return false.
注解
All filter methods return a new Crawler
instance with filtered content.
Both the filterXPath()
and filter()
methods work with XML namespaces, which can be either automatically discovered or registered explicitly.
Consider the XML below:
<?xml version="1.0" encoding="UTF-8"?> <entry xmlns="http://www.w3.org/2005/Atom" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007" > <id>tag:youtube.com,2008:video:kgZRZmEc9j4</id> <yt:accessControl action="comment" permission="allowed"/> <yt:accessControl action="videoRespond" permission="moderated"/> <media:group> <media:title type="plain">Chordates - CrashCourse Biology #24</media:title> <yt:aspectRatio>widescreen</yt:aspectRatio> </media:group> </entry>
This can be filtered with the Crawler
without needing to register namespace aliases both with filterXPath()
:
$crawler = $crawler->filterXPath('//default:entry/media:group//yt:aspectRatio');
and filter()
:
use SymfonyComponentCssSelectorCssSelector; CssSelector::disableHtmlExtension(); $crawler = $crawler->filter('default|entry media|group yt|aspectRatio');
注解
The default namespace is registered with a prefix “default”. It can be changed with the setDefaultNamespacePrefix()
method.
The default namespace is removed when loading the content if it’s the only namespace in the document. It’s done to simplify the xpath queries.
Namespaces can be explicitly registered with the registerNamespace()
method:
$crawler->registerNamespace('m', 'http://search.yahoo.com/mrss/'); $crawler = $crawler->filterXPath('//m:group//yt:aspectRatio');
警告
To query XML with a CSS selector, the HTML extension needs to be disabled with CssSelector::disableHtmlExtension
to avoid converting the selector to lowercase.
Access node by its position on the list:
$crawler->filter('body > p')->eq(0);
Get the first or last node of the current selection:
$crawler->filter('body > p')->first(); $crawler->filter('body > p')->last();
Get the nodes of the same level as the current selection:
$crawler->filter('body > p')->siblings();
Get the same level nodes after or before the current selection:
$crawler->filter('body > p')->nextAll(); $crawler->filter('body > p')->previousAll();
Get all the child or parent nodes:
$crawler->filter('body')->children(); $crawler->filter('body > p')->parents();
注解
All the traversal methods return a new Crawler
instance.
2.6 新版功能: The nodeName()
method was introduced in Symfony 2.6.
Access the node name (HTML tag name) of the first node of the current selection (eg. “p” or “div”):
// will return the node name (HTML tag name) of the first child element under <body> $tag = $crawler->filterXPath('//body/*')->nodeName();
Access the value of the first node of the current selection:
$message = $crawler->filterXPath('//body/p')->text();
Access the attribute value of the first node of the current selection:
$class = $crawler->filterXPath('//body/p')->attr('class');
Extract attribute and/or node values from the list of nodes:
$attributes = $crawler ->filterXpath('//body/p') ->extract(array('_text', 'class')) ;
注解
Special attribute _text
represents a node value.
Call an anonymous function on each node of the list:
use SymfonyComponentDomCrawlerCrawler; // ... $nodeValues = $crawler->filter('p')->each(function (Crawler $node, $i) { return $node->text(); });
2.3 新版功能: As seen here, in Symfony 2.3, the each
and reduce
Closure functions are passed a Crawler
as the first argument. Previously, that argument was a DOMNode
.
The anonymous function receives the node (as a Crawler) and the position as arguments. The result is an array of values returned by the anonymous function calls.
The crawler supports multiple ways of adding the content:
$crawler = new Crawler('<html><body /></html>'); $crawler->addHtmlContent('<html><body /></html>'); $crawler->addXmlContent('<root><node /></root>'); $crawler->addContent('<html><body /></html>'); $crawler->addContent('<root><node /></root>', 'text/xml'); $crawler->add('<html><body /></html>'); $crawler->add('<root><node /></root>');
注解
When dealing with character sets other than ISO-8859-1, always add HTML content using the addHTMLContent()
method where you can specify the second parameter to be your target character set.
As the Crawler’s implementation is based on the DOM extension, it is also able to interact with native DOMDocument
, DOMNodeList
and DOMNode
objects:
$document = new DOMDocument(); $document->loadXml('<root><node /><node /></root>'); $nodeList = $document->getElementsByTagName('node'); $node = $document->getElementsByTagName('node')->item(0); $crawler->addDocument($document); $crawler->addNodeList($nodeList); $crawler->addNodes(array($node)); $crawler->addNode($node); $crawler->add($document);
Manipulating and Dumping a Crawler
These methods on the Crawler
are intended to initially populate your Crawler
and aren’t intended to be used to further manipulate a DOM (though this is possible). However, since the Crawler
is a set of DOMElement
objects, you can use any method or property available on DOMElement
, DOMNode
or DOMDocument
. For example, you could get the HTML of a Crawler
with something like this:
$html = ''; foreach ($crawler as $domElement) { $html .= $domElement->ownerDocument->saveHTML($domElement); }
Or you can get the HTML of the first node using html()
:
$html = $crawler->html();
The html
method is new in Symfony 2.3.
To find a link by name (or a clickable image by its alt
attribute), use the selectLink
method on an existing crawler. This returns a Crawler instance with just the selected link(s). Calling link()
gives you a special Link
object:
$linksCrawler = $crawler->selectLink('Go elsewhere...'); $link = $linksCrawler->link(); // or do this all at once $link = $crawler->selectLink('Go elsewhere...')->link();
The Link
object has several useful methods to get more information about the selected link itself:
// return the proper URI that can be used to make another request $uri = $link->getUri();
注解
The getUri()
is especially useful as it cleans the href
value and transforms it into how it should really be processed. For example, for a link with href="#foo"
, this would return the full URI of the current page suffixed with #foo
. The return from getUri()
is always a full URI that you can act on.
Special treatment is also given to forms. A selectButton()
method is available on the Crawler which returns another Crawler that matches a button (input[type=submit]
, input[type=image]
, or a button
) with the given text. This method is especially useful because you can use it to return a Form
object that represents the form that the button lives in:
$form = $crawler->selectButton('validate')->form(); // or "fill" the form fields with data $form = $crawler->selectButton('validate')->form(array( 'name' => 'Ryan', ));
The Form
object has lots of very useful methods for working with forms:
$uri = $form->getUri(); $method = $form->getMethod();
The getUri()
method does more than just return the action
attribute of the form. If the form method is GET, then it mimics the browser’s behavior and returns the action
attribute followed by a query string of all of the form’s values.
You can virtually set and get values on the form:
// set values on the form internally $form->setValues(array( 'registration[username]' => 'symfonyfan', 'registration[terms]' => 1, )); // get back an array of values - in the "flat" array like above $values = $form->getValues(); // returns the values like PHP would see them, // where "registration" is its own array $values = $form->getPhpValues();
To work with multi-dimensional fields:
<form> <input name="multi[]" /> <input name="multi[]" /> <input name="multi[dimensional]" /> </form>
Pass an array of values:
// Set a single field $form->setValues(array('multi' => array('value'))); // Set multiple fields at once $form->setValues(array('multi' => array( 1 => 'value', 'dimensional' => 'an other value' )));
This is great, but it gets better! The Form
object allows you to interact with your form like a browser, selecting radio values, ticking checkboxes, and uploading files:
$form['registration[username]']->setValue('symfonyfan'); // check or uncheck a checkbox $form['registration[terms]']->tick(); $form['registration[terms]']->untick(); // select an option $form['registration[birthday][year]']->select(1984); // select many options from a "multiple" select $form['registration[interests]']->select(array('symfony', 'cookies')); // even fake a file upload $form['registration[photo]']->upload('/path/to/lucas.jpg');
What’s the point of doing all of this? If you’re testing internally, you can grab the information off of your form as if it had just been submitted by using the PHP values:
$values = $form->getPhpValues(); $files = $form->getPhpFiles();
If you’re using an external HTTP client, you can use the form to grab all of the information you need to create a POST request for the form:
$uri = $form->getUri(); $method = $form->getMethod(); $values = $form->getValues(); $files = $form->getFiles(); // now use some HTTP client and post using this information
One great example of an integrated system that uses all of this is Goutte. Goutte understands the Symfony Crawler object and can use it to submit forms directly:
use GoutteClient; // make a real request to an external site $client = new Client(); $crawler = $client->request('GET', 'https://github.com/login'); // select the form and fill in some values $form = $crawler->selectButton('Log in')->form(); $form['login'] = 'symfonyfan'; $form['password'] = 'anypass'; // submit that form $crawler = $client->submit($form);
By default, choice fields (select, radio) have internal validation activated to prevent you from setting invalid values. If you want to be able to set invalid values, you can use the disableValidation()
method on either the whole form or specific field(s):
// Disable validation for a specific field $form['country']->disableValidation()->select('Invalid value'); // Disable validation for the whole form $form->disableValidation(); $form['country']->select('Invalid value');