首页 > php教程 > PHP源码 > 正文

PHP获取文章第一张图片做为缩略图 - 开源中国社区

PHP中文网
发布: 2016-05-20 12:56:32
原创
985 人浏览过

跳至

	/**
	 * 获取文章第一张图片做为缩略图
	 * @param $content
	 * @return bool|string
	 */
	private static function thumb($content){
		$content = stripslashes($content);
		if(preg_match_all("/(src)=([\"|']?)([^ \"'>]+\.(gif|jpg|jpeg|bmp|png))\\2/i", $content, $matches)) {
			$str = $matches[3][0];
			$str = substr($str, 6);
			if (preg_match('/upload/', $str)) {
				return $str;
			}
		}
		return '';
	}
登录后复制

                   

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板