티스토리 뷰

php

php 이미지태그 없애기

xemaker 2022. 2. 11. 13:42

html의 img 태그를 없애야 할 일이 생겼다.

흠.. 어떻게 없애지..

구글링 해보니 결론적으로는 아래가 답인데.. 

preg_replace("/<img[^>]+\>/i", "", $content);

https://stackoverflow.com/questions/1107194/php-remove-img-tag-from-string

 

PHP - remove <img> tag from string

Hey, I need to delete all images from a string and I just can't find the right way to do it. Here is what I tryed, but it doesn't work: preg_replace("/<img[^>]+\>/i", "(image) ", $conten...

stackoverflow.com

 

stackoverflow 질문처럼 해도 안되는 경우가 있다. 이런 실수를 많이 하게 되는데..

php 매뉴얼을 보면

preg_replace() returns an array if the subject parameter is an array, or a string otherwise.

preg_replace()는 returns 즉, 리턴한다고 써있다.

그냥 저렇게만 쓰면 리턴한 값을 받는 부분이 없으니 당연히 안된다.

리턴한 값을 받아줘야 한다.

그래서 

$content=preg_replace("/<img[^>]+\>/i", "", $content);

이렇게 받아줘야 한다.

'php' 카테고리의 다른 글

php snoopy 한글깨짐  (0) 2022.02.12
php 스누피 외부 이미지 다운로드  (0) 2022.02.09
로컬 apmsetup7에 xe 설치하기  (0) 2021.05.17
php 한글 깨짐 해결 과정  (0) 2021.05.17
php 현재날짜 및 7일 후 날짜, 날짜 비교  (0) 2018.12.31
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함