본문에서 이미지 추출, 이미지 제거 정규식
로빈아빠
본문
본문에서 이미지 추출, 이미지 제거 정규식
preg_match_all('!<img([^\>]*)src=([^\>]*?)\>!is', $write[wr_content], $matches);
foreach($matches[0] as $key => $val) {
$write[wr_content] = str_replace($val,"",$write[wr_content]);
preg_match_all('/([^=^"^ ]*)src=([^ ^>]*)/i', $val, $src_match);
$src[] = str_replace("\"","",$src_match[2][0]);
} var_dump($src);
preg_match_all('!<img([^\>]*)src=([^\>]*?)\>!is', $write[wr_content], $matches);
foreach($matches[0] as $key => $val) {
$write[wr_content] = str_replace($val,"",$write[wr_content]);
preg_match_all('/([^=^"^ ]*)src=([^ ^>]*)/i', $val, $src_match);
$src[] = str_replace("\"","",$src_match[2][0]);
} var_dump($src);
댓글목록
등록된 댓글이 없습니다.