리스트에서 에디터 이미지 여러개
본문
<?php
$n = 0;
for ($i=0; $i < $list_cnt; $i++) {
// 글수 체크
if (!$list[$i]['is_notice'])
$n++;
preg_match_all("/<img[^>]*src=[\"']?([^>\"']+)[\"']?[^>]*>/i", $list[$i]['wr_content'],$matches);
$img = get_view_thumbnail($matches[1][0]);
한개 아닌 여러개 뽑아 올려면 어떻게 하면 될까요?
답변 4
$img = get_view_thumbnail($matches[1][0]);
$img1 = get_view_thumbnail($matches[1][1]);
이런 식으로 해 보세요.
$pattern = "/<img.*?src=[\"']?(?P<url>[^(http)].*?)[\"' >]/i";
preg_match($pattern,stripslashes(str_replace('&','&',$list[$i]["wr_content"])), $match);
$img = substr($match['url'],1);
이것도 여러개 안되나요? 하나씩 해야 되요?
print_r( $match); 에서 한개밖에 안나옵니다. 이미지가 3개인데 이미지 하나만 나오네요.