Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Crawler.php

function Crawler::selectImage

Selects images by alt value.

File

vendor/symfony/dom-crawler/Crawler.php, line 742

Class

Crawler
Crawler eases navigation of a list of \DOMNode objects.

Namespace

Symfony\Component\DomCrawler

Code

public function selectImage(string $value) : static {
    $xpath = \sprintf('descendant-or-self::img[contains(normalize-space(string(@alt)), %s)]', static::xpathLiteral($value));
    return $this->filterRelativeXPath($xpath);
}
RSS feed
Powered by Drupal