Home > php教程 > php手册 > php正则表达式提取图片地址 超链接 标题 实现代码

php正则表达式提取图片地址 超链接 标题 实现代码

WBOY
Release: 2016-05-25 16:55:46
Original
818 people have browsed it
文章介绍了利用php正则表达式提取图片地址 超链接 标题 实现代码,有需要的朋友可参考一下。

正则表达式提取网址中的id

 代码如下 复制代码
preg_match('/http://t.sina.com.cn/(d+)/fans//',$html,$result); 正则表达式提取网址中的id
echo $result[1];


PHP的正则表达式提取图片地址的代码。

 代码如下 复制代码
$str='

';  $pattern="//";  preg_match_all($pattern,$str,$match);  print_r($match);

 

PHP正则表达式提取超链接及其标题

 

';

利用正则表达式是最简单的,其它的办法,偶米去想。。。

$pat = '/(.*?)/i';
preg_match_all($pat, $str, $m);

输出方法:

print_r($m[2]);
print_r($m[4]);

 代码如下 复制代码

$str = '歌曲列表
中文金曲榜

• 轻音乐



本文地址:

转载随意,但请附上文章地址:-)

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template