展会信息港展会大全

PHP采集代码实例 android软件开发教程
来源:互联网   发布日期:2016-03-22 16:10:32   浏览:3016次  

导读:?php function preg_substr($start, $end, $str) // 正则截取函数 { $temp = preg_split($start, $str); $content = preg_split($end, $temp[1]); return $content[0]; } function str_substr($start, $end, $str) // 字符串截取函数 { $temp = explode($sta...

<?php

function preg_substr($start, $end, $str) // 正则截取函数

{

$temp = preg_split($start, $str);

$content = preg_split($end, $temp[1]);

return $content[0];

}

function str_substr($start, $end, $str) // 字符串截取函数

{

$temp = explode($start, $str, 2);

$content = explode($end, $temp[1], 2);

return $content[0];

}

// ---------------- 使用实例 ----------------

$str = iconv("UTF-8", "GB2312", file_get_contents("http://www.3lian.com"));

echo ('标题: ' . str_substr("<title>", "</title>", $str)); // 通过字符串提取标题

echo ('作者: ' . preg_substr("/userid=d+">/", "/<//", $str)); // 通过正则提取作者

echo ('内容: ' . str_substr('<div class="content">', '</div>', $str)); //内容当然不可以少

?>

赞助本站

人工智能实验室

相关热词: 开发 编程 android

上一篇:没有了...
AiLab云推荐
推荐内容
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港