123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230 |
- <?php
- namespace Symfony\Component\DomCrawler;
- use Masterminds\HTML5;
- use Symfony\Component\CssSelector\CssSelectorConverter;
- class Crawler implements \Countable, \IteratorAggregate
- {
- protected $uri;
-
- private $defaultNamespacePrefix = 'default';
-
- private $namespaces = [];
-
- private $baseHref;
-
- private $document;
-
- private $nodes = [];
-
- private $isHtml = true;
-
- private $html5Parser;
-
- public function __construct($node = null, string $uri = null, string $baseHref = null)
- {
- $this->uri = $uri;
- $this->baseHref = $baseHref ?: $uri;
- $this->html5Parser = class_exists(HTML5::class) ? new HTML5(['disable_html_ns' => true]) : null;
- $this->add($node);
- }
-
- public function getUri()
- {
- return $this->uri;
- }
-
- public function getBaseHref()
- {
- return $this->baseHref;
- }
-
- public function clear()
- {
- $this->nodes = [];
- $this->document = null;
- }
-
- public function add($node)
- {
- if ($node instanceof \DOMNodeList) {
- $this->addNodeList($node);
- } elseif ($node instanceof \DOMNode) {
- $this->addNode($node);
- } elseif (\is_array($node)) {
- $this->addNodes($node);
- } elseif (\is_string($node)) {
- $this->addContent($node);
- } elseif (null !== $node) {
- throw new \InvalidArgumentException(sprintf('Expecting a DOMNodeList or DOMNode instance, an array, a string, or null, but got "%s".', \is_object($node) ? \get_class($node) : \gettype($node)));
- }
- }
-
- public function addContent($content, $type = null)
- {
- if (empty($type)) {
- $type = 0 === strpos($content, '<?xml') ? 'application/xml' : 'text/html';
- }
-
- if (!preg_match('/(x|ht)ml/i', $type, $xmlMatches)) {
- return;
- }
- $charset = null;
- if (false !== $pos = stripos($type, 'charset=')) {
- $charset = substr($type, $pos + 8);
- if (false !== $pos = strpos($charset, ';')) {
- $charset = substr($charset, 0, $pos);
- }
- }
-
-
- if (null === $charset &&
- preg_match('/\<meta[^\>]+charset *= *["\']?([a-zA-Z\-0-9_:.]+)/i', $content, $matches)) {
- $charset = $matches[1];
- }
- if (null === $charset) {
- $charset = preg_match('//u', $content) ? 'UTF-8' : 'ISO-8859-1';
- }
- if ('x' === $xmlMatches[1]) {
- $this->addXmlContent($content, $charset);
- } else {
- $this->addHtmlContent($content, $charset);
- }
- }
-
- public function addHtmlContent($content, $charset = 'UTF-8')
- {
-
- $dom = null !== $this->html5Parser && strspn($content, " \t\r\n") === stripos($content, '<!doctype html>') ? $this->parseHtml5($content, $charset) : $this->parseXhtml($content, $charset);
- $this->addDocument($dom);
- $base = $this->filterRelativeXPath('descendant-or-self::base')->extract(['href']);
- $baseHref = current($base);
- if (\count($base) && !empty($baseHref)) {
- if ($this->baseHref) {
- $linkNode = $dom->createElement('a');
- $linkNode->setAttribute('href', $baseHref);
- $link = new Link($linkNode, $this->baseHref);
- $this->baseHref = $link->getUri();
- } else {
- $this->baseHref = $baseHref;
- }
- }
- }
-
- public function addXmlContent($content, $charset = 'UTF-8', $options = LIBXML_NONET)
- {
-
- if (!preg_match('/xmlns:/', $content)) {
- $content = str_replace('xmlns', 'ns', $content);
- }
- $internalErrors = libxml_use_internal_errors(true);
- $disableEntities = libxml_disable_entity_loader(true);
- $dom = new \DOMDocument('1.0', $charset);
- $dom->validateOnParse = true;
- if ('' !== trim($content)) {
- @$dom->loadXML($content, $options);
- }
- libxml_use_internal_errors($internalErrors);
- libxml_disable_entity_loader($disableEntities);
- $this->addDocument($dom);
- $this->isHtml = false;
- }
-
- public function addDocument(\DOMDocument $dom)
- {
- if ($dom->documentElement) {
- $this->addNode($dom->documentElement);
- }
- }
-
- public function addNodeList(\DOMNodeList $nodes)
- {
- foreach ($nodes as $node) {
- if ($node instanceof \DOMNode) {
- $this->addNode($node);
- }
- }
- }
-
- public function addNodes(array $nodes)
- {
- foreach ($nodes as $node) {
- $this->add($node);
- }
- }
-
- public function addNode(\DOMNode $node)
- {
- if ($node instanceof \DOMDocument) {
- $node = $node->documentElement;
- }
- if (null !== $this->document && $this->document !== $node->ownerDocument) {
- throw new \InvalidArgumentException('Attaching DOM nodes from multiple documents in the same crawler is forbidden.');
- }
- if (null === $this->document) {
- $this->document = $node->ownerDocument;
- }
-
- if (\in_array($node, $this->nodes, true)) {
- return;
- }
- $this->nodes[] = $node;
- }
-
- public function eq($position)
- {
- if (isset($this->nodes[$position])) {
- return $this->createSubCrawler($this->nodes[$position]);
- }
- return $this->createSubCrawler(null);
- }
-
- public function each(\Closure $closure)
- {
- $data = [];
- foreach ($this->nodes as $i => $node) {
- $data[] = $closure($this->createSubCrawler($node), $i);
- }
- return $data;
- }
-
- public function slice($offset = 0, $length = null)
- {
- return $this->createSubCrawler(\array_slice($this->nodes, $offset, $length));
- }
-
- public function reduce(\Closure $closure)
- {
- $nodes = [];
- foreach ($this->nodes as $i => $node) {
- if (false !== $closure($this->createSubCrawler($node), $i)) {
- $nodes[] = $node;
- }
- }
- return $this->createSubCrawler($nodes);
- }
-
- public function first()
- {
- return $this->eq(0);
- }
-
- public function last()
- {
- return $this->eq(\count($this->nodes) - 1);
- }
-
- public function siblings()
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0)->parentNode->firstChild));
- }
-
- public function nextAll()
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0)));
- }
-
- public function previousAll()
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->createSubCrawler($this->sibling($this->getNode(0), 'previousSibling'));
- }
-
- public function parents()
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- $nodes = [];
- while ($node = $node->parentNode) {
- if (XML_ELEMENT_NODE === $node->nodeType) {
- $nodes[] = $node;
- }
- }
- return $this->createSubCrawler($nodes);
- }
-
- public function children()
- {
- if (\func_num_args() < 1 && __CLASS__ !== \get_class($this) && __CLASS__ !== (new \ReflectionMethod($this, __FUNCTION__))->getDeclaringClass()->getName() && !$this instanceof \PHPUnit\Framework\MockObject\MockObject && !$this instanceof \Prophecy\Prophecy\ProphecySubjectInterface) {
- @trigger_error(sprintf('The "%s()" method will have a new "string $selector = null" argument in version 5.0, not defining it is deprecated since Symfony 4.2.', __METHOD__), E_USER_DEPRECATED);
- }
- $selector = 0 < \func_num_args() ? func_get_arg(0) : null;
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- if (null !== $selector) {
- $converter = $this->createCssSelectorConverter();
- $xpath = $converter->toXPath($selector, 'child::');
- return $this->filterRelativeXPath($xpath);
- }
- $node = $this->getNode(0)->firstChild;
- return $this->createSubCrawler($node ? $this->sibling($node) : []);
- }
-
- public function attr($attribute)
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- return $node->hasAttribute($attribute) ? $node->getAttribute($attribute) : null;
- }
-
- public function nodeName()
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->getNode(0)->nodeName;
- }
-
- public function text()
- {
- if (!$this->nodes) {
- if (0 < \func_num_args()) {
- return func_get_arg(0);
- }
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- return $this->getNode(0)->nodeValue;
- }
-
- public function html()
- {
- if (!$this->nodes) {
- if (0 < \func_num_args()) {
- return func_get_arg(0);
- }
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- $owner = $node->ownerDocument;
- if (null !== $this->html5Parser && '<!DOCTYPE html>' === $owner->saveXML($owner->childNodes[0])) {
- $owner = $this->html5Parser;
- }
- $html = '';
- foreach ($node->childNodes as $child) {
- $html .= $owner->saveHTML($child);
- }
- return $html;
- }
-
- public function evaluate($xpath)
- {
- if (null === $this->document) {
- throw new \LogicException('Cannot evaluate the expression on an uninitialized crawler.');
- }
- $data = [];
- $domxpath = $this->createDOMXPath($this->document, $this->findNamespacePrefixes($xpath));
- foreach ($this->nodes as $node) {
- $data[] = $domxpath->evaluate($xpath, $node);
- }
- if (isset($data[0]) && $data[0] instanceof \DOMNodeList) {
- return $this->createSubCrawler($data);
- }
- return $data;
- }
-
- public function extract($attributes)
- {
- $attributes = (array) $attributes;
- $count = \count($attributes);
- $data = [];
- foreach ($this->nodes as $node) {
- $elements = [];
- foreach ($attributes as $attribute) {
- if ('_text' === $attribute) {
- $elements[] = $node->nodeValue;
- } elseif ('_name' === $attribute) {
- $elements[] = $node->nodeName;
- } else {
- $elements[] = $node->getAttribute($attribute);
- }
- }
- $data[] = 1 === $count ? $elements[0] : $elements;
- }
- return $data;
- }
-
- public function filterXPath($xpath)
- {
- $xpath = $this->relativize($xpath);
-
- if ('' === $xpath) {
- return $this->createSubCrawler(null);
- }
- return $this->filterRelativeXPath($xpath);
- }
-
- public function filter($selector)
- {
- $converter = $this->createCssSelectorConverter();
-
- return $this->filterRelativeXPath($converter->toXPath($selector));
- }
-
- public function selectLink($value)
- {
- return $this->filterRelativeXPath(
- sprintf('descendant-or-self::a[contains(concat(\' \', normalize-space(string(.)), \' \'), %1$s) or ./img[contains(concat(\' \', normalize-space(string(@alt)), \' \'), %1$s)]]', static::xpathLiteral(' '.$value.' '))
- );
- }
-
- public function selectImage($value)
- {
- $xpath = sprintf('descendant-or-self::img[contains(normalize-space(string(@alt)), %s)]', static::xpathLiteral($value));
- return $this->filterRelativeXPath($xpath);
- }
-
- public function selectButton($value)
- {
- return $this->filterRelativeXPath(
- sprintf('descendant-or-self::input[((contains(%1$s, "submit") or contains(%1$s, "button")) and contains(concat(\' \', normalize-space(string(@value)), \' \'), %2$s)) or (contains(%1$s, "image") and contains(concat(\' \', normalize-space(string(@alt)), \' \'), %2$s)) or @id=%3$s or @name=%3$s] | descendant-or-self::button[contains(concat(\' \', normalize-space(string(.)), \' \'), %2$s) or @id=%3$s or @name=%3$s]', 'translate(@type, "ABCDEFGHIJKLMNOPQRSTUVWXYZ", "abcdefghijklmnopqrstuvwxyz")', static::xpathLiteral(' '.$value.' '), static::xpathLiteral($value))
- );
- }
-
- public function link($method = 'get')
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The selected node should be instance of DOMElement, got "%s".', \get_class($node)));
- }
- return new Link($node, $this->baseHref, $method);
- }
-
- public function links()
- {
- $links = [];
- foreach ($this->nodes as $node) {
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The current node list should contain only DOMElement instances, "%s" found.', \get_class($node)));
- }
- $links[] = new Link($node, $this->baseHref, 'get');
- }
- return $links;
- }
-
- public function image()
- {
- if (!\count($this)) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The selected node should be instance of DOMElement, got "%s".', \get_class($node)));
- }
- return new Image($node, $this->baseHref);
- }
-
- public function images()
- {
- $images = [];
- foreach ($this as $node) {
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The current node list should contain only DOMElement instances, "%s" found.', \get_class($node)));
- }
- $images[] = new Image($node, $this->baseHref);
- }
- return $images;
- }
-
- public function form(array $values = null, $method = null)
- {
- if (!$this->nodes) {
- throw new \InvalidArgumentException('The current node list is empty.');
- }
- $node = $this->getNode(0);
- if (!$node instanceof \DOMElement) {
- throw new \InvalidArgumentException(sprintf('The selected node should be instance of DOMElement, got "%s".', \get_class($node)));
- }
- $form = new Form($node, $this->uri, $method, $this->baseHref);
- if (null !== $values) {
- $form->setValues($values);
- }
- return $form;
- }
-
- public function setDefaultNamespacePrefix($prefix)
- {
- $this->defaultNamespacePrefix = $prefix;
- }
-
- public function registerNamespace($prefix, $namespace)
- {
- $this->namespaces[$prefix] = $namespace;
- }
-
- public static function xpathLiteral($s)
- {
- if (false === strpos($s, "'")) {
- return sprintf("'%s'", $s);
- }
- if (false === strpos($s, '"')) {
- return sprintf('"%s"', $s);
- }
- $string = $s;
- $parts = [];
- while (true) {
- if (false !== $pos = strpos($string, "'")) {
- $parts[] = sprintf("'%s'", substr($string, 0, $pos));
- $parts[] = "\"'\"";
- $string = substr($string, $pos + 1);
- } else {
- $parts[] = "'$string'";
- break;
- }
- }
- return sprintf('concat(%s)', implode(', ', $parts));
- }
-
- private function filterRelativeXPath($xpath)
- {
- $prefixes = $this->findNamespacePrefixes($xpath);
- $crawler = $this->createSubCrawler(null);
- foreach ($this->nodes as $node) {
- $domxpath = $this->createDOMXPath($node->ownerDocument, $prefixes);
- $crawler->add($domxpath->query($xpath, $node));
- }
- return $crawler;
- }
-
- private function relativize(string $xpath): string
- {
- $expressions = [];
-
-
- $nonMatchingExpression = 'a[name() = "b"]';
- $xpathLen = \strlen($xpath);
- $openedBrackets = 0;
- $startPosition = strspn($xpath, " \t\n\r\0\x0B");
- for ($i = $startPosition; $i <= $xpathLen; ++$i) {
- $i += strcspn($xpath, '"\'[]|', $i);
- if ($i < $xpathLen) {
- switch ($xpath[$i]) {
- case '"':
- case "'":
- if (false === $i = strpos($xpath, $xpath[$i], $i + 1)) {
- return $xpath;
- }
- continue 2;
- case '[':
- ++$openedBrackets;
- continue 2;
- case ']':
- --$openedBrackets;
- continue 2;
- }
- }
- if ($openedBrackets) {
- continue;
- }
- if ($startPosition < $xpathLen && '(' === $xpath[$startPosition]) {
-
-
- $j = 1 + strspn($xpath, "( \t\n\r\0\x0B", $startPosition + 1);
- $parenthesis = substr($xpath, $startPosition, $j);
- $startPosition += $j;
- } else {
- $parenthesis = '';
- }
- $expression = rtrim(substr($xpath, $startPosition, $i - $startPosition));
- if (0 === strpos($expression, 'self::*/')) {
- $expression = './'.substr($expression, 8);
- }
-
- if ('' === $expression) {
- $expression = $nonMatchingExpression;
- } elseif (0 === strpos($expression, '//')) {
- $expression = 'descendant-or-self::'.substr($expression, 2);
- } elseif (0 === strpos($expression, './/')) {
- $expression = 'descendant-or-self::'.substr($expression, 3);
- } elseif (0 === strpos($expression, './')) {
- $expression = 'self::'.substr($expression, 2);
- } elseif (0 === strpos($expression, 'child::')) {
- $expression = 'self::'.substr($expression, 7);
- } elseif ('/' === $expression[0] || '.' === $expression[0] || 0 === strpos($expression, 'self::')) {
- $expression = $nonMatchingExpression;
- } elseif (0 === strpos($expression, 'descendant::')) {
- $expression = 'descendant-or-self::'.substr($expression, 12);
- } elseif (preg_match('/^(ancestor|ancestor-or-self|attribute|following|following-sibling|namespace|parent|preceding|preceding-sibling)::/', $expression)) {
-
- $expression = $nonMatchingExpression;
- } elseif (0 !== strpos($expression, 'descendant-or-self::')) {
- $expression = 'self::'.$expression;
- }
- $expressions[] = $parenthesis.$expression;
- if ($i === $xpathLen) {
- return implode(' | ', $expressions);
- }
- $i += strspn($xpath, " \t\n\r\0\x0B", $i + 1);
- $startPosition = $i + 1;
- }
- return $xpath;
- }
-
- public function getNode($position)
- {
- if (isset($this->nodes[$position])) {
- return $this->nodes[$position];
- }
- }
-
- public function count()
- {
- return \count($this->nodes);
- }
-
- public function getIterator()
- {
- return new \ArrayIterator($this->nodes);
- }
-
- protected function sibling($node, $siblingDir = 'nextSibling')
- {
- $nodes = [];
- $currentNode = $this->getNode(0);
- do {
- if ($node !== $currentNode && XML_ELEMENT_NODE === $node->nodeType) {
- $nodes[] = $node;
- }
- } while ($node = $node->$siblingDir);
- return $nodes;
- }
- private function parseHtml5(string $htmlContent, string $charset = 'UTF-8'): \DOMDocument
- {
- return $this->html5Parser->parse($this->convertToHtmlEntities($htmlContent, $charset), [], $charset);
- }
- private function parseXhtml(string $htmlContent, string $charset = 'UTF-8'): \DOMDocument
- {
- $htmlContent = $this->convertToHtmlEntities($htmlContent, $charset);
- $internalErrors = libxml_use_internal_errors(true);
- $disableEntities = libxml_disable_entity_loader(true);
- $dom = new \DOMDocument('1.0', $charset);
- $dom->validateOnParse = true;
- if ('' !== trim($htmlContent)) {
- @$dom->loadHTML($htmlContent);
- }
- libxml_use_internal_errors($internalErrors);
- libxml_disable_entity_loader($disableEntities);
- return $dom;
- }
-
- private function convertToHtmlEntities(string $htmlContent, string $charset = 'UTF-8'): string
- {
- set_error_handler(function () { throw new \Exception(); });
- try {
- return mb_convert_encoding($htmlContent, 'HTML-ENTITIES', $charset);
- } catch (\Exception $e) {
- try {
- $htmlContent = iconv($charset, 'UTF-8', $htmlContent);
- $htmlContent = mb_convert_encoding($htmlContent, 'HTML-ENTITIES', 'UTF-8');
- } catch (\Exception $e) {
- }
- return $htmlContent;
- } finally {
- restore_error_handler();
- }
- }
-
- private function createDOMXPath(\DOMDocument $document, array $prefixes = []): \DOMXPath
- {
- $domxpath = new \DOMXPath($document);
- foreach ($prefixes as $prefix) {
- $namespace = $this->discoverNamespace($domxpath, $prefix);
- if (null !== $namespace) {
- $domxpath->registerNamespace($prefix, $namespace);
- }
- }
- return $domxpath;
- }
-
- private function discoverNamespace(\DOMXPath $domxpath, string $prefix): ?string
- {
- if (isset($this->namespaces[$prefix])) {
- return $this->namespaces[$prefix];
- }
-
- $namespaces = $domxpath->query(sprintf('(//namespace::*[name()="%s"])[last()]', $this->defaultNamespacePrefix === $prefix ? '' : $prefix));
- if ($node = $namespaces->item(0)) {
- return $node->nodeValue;
- }
- return null;
- }
- private function findNamespacePrefixes(string $xpath): array
- {
- if (preg_match_all('/(?P<prefix>[a-z_][a-z_0-9\-\.]*+):[^"\/:]/i', $xpath, $matches)) {
- return array_unique($matches['prefix']);
- }
- return [];
- }
-
- private function createSubCrawler($nodes)
- {
- $crawler = new static($nodes, $this->uri, $this->baseHref);
- $crawler->isHtml = $this->isHtml;
- $crawler->document = $this->document;
- $crawler->namespaces = $this->namespaces;
- $crawler->html5Parser = $this->html5Parser;
- return $crawler;
- }
-
- private function createCssSelectorConverter(): CssSelectorConverter
- {
- if (!class_exists(CssSelectorConverter::class)) {
- throw new \LogicException('To filter with a CSS selector, install the CssSelector component ("composer require symfony/css-selector"). Or use filterXpath instead.');
- }
- return new CssSelectorConverter($this->isHtml);
- }
- }
|