DomQuery icon indicating copy to clipboard operation
DomQuery copied to clipboard

Select Class Error

Open SpyShare opened this issue 3 years ago • 0 comments

im try select Class But Get Error My Code:


require '../../Phper/Slcquery/vendor/autoload.php';
use Rct567\DomQuery\DomQuery;

$resp = "<div class='Test'> <a> Hello World </a> </div>";
 
    $dom = new DomQuery("<div>".$resp."</div>");

     $links = $dom->find('.Test');

     echo $links->html(); 
 

Fatal error: Uncaught Exception: Expression //.Test is malformed. in D:\Xampp\htdocs

SpyShare avatar May 13 '21 19:05 SpyShare