Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Xpath.php
Go to the documentation of this file.
1 <?php
7 
8 class Xpath
9 {
17  public static function getElementsCountForXpath($xpath, $html)
18  {
19  $domDocument = new \DOMDocument('1.0', 'UTF-8');
20  libxml_use_internal_errors(true);
21  $domDocument->loadHTML($html);
22  libxml_use_internal_errors(false);
23  $domXpath = new \DOMXPath($domDocument);
24  $nodes = $domXpath->query($xpath);
25  return $nodes->length;
26  }
27 }
static getElementsCountForXpath($xpath, $html)
Definition: Xpath.php:17