Skip to content

Instantly share code, notes, and snippets.

@narita1980
Created April 4, 2013 01:54
Show Gist options
  • Save narita1980/5307085 to your computer and use it in GitHub Desktop.
Save narita1980/5307085 to your computer and use it in GitHub Desktop.
元の状態を維持したまま解析をする(file_get_html)
<?php
require_once('simple_html_dom.php');
$url = "http://google.co.jp";
$html = file_get_html($url, false, null, 1, -1, true, true, DEFAULT_TARGET_CHARSET, false);
echo $html;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment