PHP에서 img 태그를 삭제하는 방법: 먼저 PHP 샘플 파일을 만든 다음 "preg_replace("/]+>/i", "(image) ", $content);" img 태그 . [^>
권장: "PHP 비디오 튜토리얼"
코드 샘플:
<? $content = "this is something with an <img src=\"test.png\"/> in it."; $content = preg_replace("/<img[^>]+\>/i", "(image) ", $content); echo $content; ?>
결과:
this is something with an (image) in it.
위 내용은 PHP에서 img 태그를 삭제하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!