| #720 | if(empty($cms_content['pic']) && $imagenum && $auto_pic) { |
| #721 | $cms_content['pic'] = $this->auto_pic($table, $uid, $id, $models); |
| #722 | } |
| #723 | |
| #724 | //开启自动缩略图,匹配内容里面的图片(这里不生成缩略图小图,直接是完整的图片网址) |
| #725 | if(empty($cms_content['pic']) && $auto_pic){ |
| #726 | $pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/"; |
| #727 | preg_match_all($pattern, $contentstr, $match); |
| #728 | if( isset($match[1]) && isset($match[1][0]) ){ |
| #729 | $match_pic = $match[1][0]; |