Skip to content

Instantly share code, notes, and snippets.

@parsibox
Created January 1, 2018 15:47
Show Gist options
  • Save parsibox/406b251ee99b6bdf0a17857f7fc81bd8 to your computer and use it in GitHub Desktop.
Save parsibox/406b251ee99b6bdf0a17857f7fc81bd8 to your computer and use it in GitHub Desktop.
show utf8 in DOMDocument
$dom = new DOMDocument();
@$dom->loadHTML(mb_convert_encoding( $output_3, 'HTML-ENTITIES', 'UTF-8'));
$xpath = new DOMXPath($dom);
$table=$xpath->query("//div[contains(@class, 'accordion-inner')]");//accordion-body
print_r( $table->length );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment