PHP에서 스크립트를 지우는 방법: 1. PHP 샘플 파일을 만듭니다. 2. "function delScript($string){...}" 메서드를 통해 html에서 스크립트를 제거합니다.
이 문서의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
php 스크립트를 지우는 방법?
php는 html에서 스크립트를 제거합니다
코드는 다음과 같습니다.
//去除 script 脚 本 function delScript($string){ $pregfind = array("/<script.*>.*<//script>/siU",'/on(mousewheel|mouseover|click|load|onload|submit|focus|blur)="[^"]*"/i'); $pregreplace = array('',''); $string = preg_replace($pregfind, $pregreplace, $string); return $string; }
주로 < ;script>2cacc6d41bbb37262a98f745aa00fbf0를 변경하고 중간 부분을 교체하여 비워둡니다.
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 스크립트를 지우는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!