에디터상에서 입력한 이미지 가져오기 함수
common.lib.php – 2602
// 에디터 이미지 얻기 function get_editor_image($contents, $view=true) { if(!$contents) return false; // $contents 중 img 태그 추출 if ($view) $pattern = "/<img([^>]*)>/iS"; else $pattern = "/<img[^>]*src=[\'\"]?([^>\'\"]+[^>\'\"]+)[\'\"]?[^>]*>/i"; preg_match_all($pattern, $contents, $matchs); return $matchs; }