ssl 적용 때문에 이미지 url http 로 되어 있어서
http: 를 뺀 이미지 주소 img src='//iwav.co.kr/aaa.jp'
이렇게 만들어 주는 이미지 정규식 이다.
// ssl 에 적용에 때른 http 제거
$reg_exImg = '/(http:|https:)(\/\/[a-zA-Z0-9\-\.]+\.[a-zA-Z]{2,3}(\/\S*)?(jpg|png|gif|jpeg))/i';
$replacement = '$2';
$body=preg_replace($reg_exImg, $replacement,$body);
preg_match($reg_exImg, $f_url, $matches);
|