码迷,mamicode.com
首页 > Web开发 > 详细

php获取指定div内容

时间:2018-03-28 16:55:40      阅读:1070      评论:0      收藏:0      [点我收藏+]

标签:init   gpo   class   AC   action   curl   close   www   post   

<?php

//取div class="fraction-dl"的内容

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, ‘http://www.singtec.cn/xiezuo/1517195608.html‘);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt( $ch, CURLOPT_HEADER, 0 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $data );
$return = curl_exec( $ch );
curl_close( $ch );

$regex4="/<div class=\"fraction-dl\".*?>.*?<\/div>/ism";
if(preg_match_all($regex4, $return, $matches)){
print_r($matches[0]);
}else{
echo ‘错误!‘;
}

?>

php获取指定div内容

标签:init   gpo   class   AC   action   curl   close   www   post   

原文地址:https://www.cnblogs.com/beli/p/8664306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!