phpQuery让php处理html代码像jQuery一样方便
2015-01-24信息快讯网
这篇文章主要介绍了phpQuery让php处理html代码像jQuery一样方便,需要的朋友可以参考下
简介
如何在php中方便地解析html代码,估计是每个phper都会遇到的问题。用phpQuery就可以让php处理html代码像jQuery一样方便。
项目地址:https://code.google.com/p/phpquery/
github地址:https://github.com/TobiaszCudnik/phpquery
DEMO
下载库文件:https://code.google.com/p/phpquery/downloads/list
我下的是onefile版:phpQuery-0.9.5.386-onefile.zip
官方demo:https://code.google.com/p/phpquery/source/browse/branches/dev/demo.php
然后在项目中引用。
html文件test.html:
<div class="thumb" id="Thumb-13164-3640" style="position: absolute; left: 0px; top: 0px;"> <a href="/Spiderman-City-Drive"> <img src="/thumb/12/Spiderman-City-Drive.jpg" alt=""> <span class="GameName" id="GameName-13164-3640" style="display: none;">Spiderman City Drive</span> <span class="GameRating" id="GameRating-13164-3640" style="display: none;"> <span style="width: 68.14816px;"></span> </span> </a> </div> <div class="thumb" id="Thumb-13169-5946" style="position: absolute; left: 190px; top: 0px;"> <a href="/Spiderman-City-Raid"> <img src="/thumb/12/Spiderman-City-Raid.jpg" alt=""> <span class="GameName" id="GameName-13169-5946" style="display: none;">Spiderman - City Raid</span> <span class="GameRating" id="GameRating-13169-5946" style="display: none;"> <span style="width: 67.01152px;"></span> </span> </a> </div>
php处理:
<?php include('phpQuery-onefile.php'); $filePath = 'test.html'; $fileContent = file_get_contents($filePath); $doc = phpQuery::newDocumentHTML($fileContent); phpQuery::selectDocument($doc); $data = array( 'name' => array(), 'href' => array(), 'img' => array() ); foreach (pq('a') as $t) { $href = $t -> getAttribute('href'); $data['href'][] = $href; } foreach (pq('img') as $img) { $data['img'][] = $domain . $img -> getAttribute('src'); } foreach (pq('.GameName') as $name) { $data['name'][] = $name -> nodeValue; } var_dump($data); ?>
上面的代码中包含了取属性和innerText内容(通过nodeValue取)。
输出:
array (size=3) 'name' => array (size=2) 0 => string 'Spiderman City Drive' (length=20) 1 => string 'Spiderman - City Raid' (length=21) 'href' => array (size=2) 0 => string 'http://www.gahe.com/Spiderman-City-Drive' (length=40) 1 => string 'http://www.gahe.com/Spiderman-City-Raid' (length=39) 'img' => array (size=2) 0 => string 'http://www.gahe.com/thumb/12/Spiderman-City-Drive.jpg' (length=53) 1 => string 'http://www.gahe.com/thumb/12/Spiderman-City-Raid.jpg' (length=52)
强大的是pq选择器,语法类似jQuery,很方便。
php使用正则表达式获取图片url的方法
php使用CURL伪造IP和来源实例详解
php+mysql实现无限分类实例详解
php截取html字符串及自动补全html标签的方法
php在linux下检测mysql同步状态的方法
php正则匹配html中带class的div并选取其中内容的方法
ucenter通信原理分析
php计划任务之ignore_user_abort函数实现方法
WampServer下安装多个版本的PHP、mysql、apache图文教程
PHP和Shell实现检查SAMBA与NFS Server是否存在
windows中为php安装mongodb与memcache
php基于表单密码验证与HTTP验证用法实例
php使用fputcsv()函数csv文件读写数据的方法
phplot生成图片类用法详解
写一段简单的PHP建立文件夹代码
php读取flash文件高宽帧数背景颜色的方法
ioncube_loader_win_5.2.dll的错误解决方法
jQuery+PHP实现的掷色子抽奖游戏实例
PHP+jquery实时显示网站在线人数的方法
PHP中使用xmlreader读取xml数据示例
php+jQuery.uploadify实现文件上传教程
PHP_SELF,SCRIPT_NAME,REQUEST_URI区别
PHP+jquery+ajax实现即时聊天功能实例
php中http与https跨域共享session的解决方法
PHP使用xmllint命令处理xml与html的方法
php生成shtml类用法实例
PHP实现抓取HTTPS内容