www.buildinsider.net
éå»ã«èª¿ã¹ããã®ãããããã£ã¦ã¿ããã¨æãæãè
°ãä¸ãã¾ãããmobile-hack.hatenablog.com
<?php require('phpQuery/phpQuery.php'); $html = file_get_contents('http://www.example.com/', false); $doc = phpQuery::newDocument($html); phpQuery::selectDocument($doc); $video_tag = $doc->find('video'); //<video><source src="http://www.example.com/source">data</source></video> $source = $doc->find('video')->find('source'); //<source src="http://www.example.com/source">data</source> $url = $doc->find('video')->find('source')->attr('src'); //http://www.example.com/source
attr() 㧠attribute(ã¢ããªãã¥ã¼ã)åå¾åºæ¥ãã®ã¯è¯ãã£ãã
HTML ã®ã¹ã¯ã¬ã¤ãã³ã°ãåºæ¥ã¾ããã