Skip to content

Instantly share code, notes, and snippets.

@idoushiki
Created February 22, 2018 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save idoushiki/e3baa365516707d067850fb4b44e40ea to your computer and use it in GitHub Desktop.
Save idoushiki/e3baa365516707d067850fb4b44e40ea to your computer and use it in GitHub Desktop.
<?php
require_once("phpQuery-onefile.php"); //phpQuery-onefile.phpのファイルを配置した場所を指定する。
$html=file_get_contents("http://idoushiki.hatenablog.com"); //スクレイピングしたいサイトのURLを指定する。
echo phpQuery::newDocument($html)->find("body")->text();//
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment