Skip to content

Instantly share code, notes, and snippets.

@wouterj
Created September 12, 2015 18:44
Show Gist options
  • Save wouterj/a839d73c01d3fe4edd36 to your computer and use it in GitHub Desktop.
Save wouterj/a839d73c01d3fe4edd36 to your computer and use it in GitHub Desktop.
<?php
require 'vendor/autoload.php';
$dom = new DOMDocument();
$dom->loadHTML(<<<EOH
<!doctype html>
<td>
<div class="iaconbox">
<a title="magnet">Hello!</a>
</div>
</td>
EOH
);
$xpath = Symfony\Component\CssSelector\CssSelector::toXpath('td div.iaconbox a[title*="magnet"]');
$xDom = new DOMXpath($dom);
var_dump($xDom->query($xpath));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment