#この記事の動作環境:Windows7 システム、PHP7.1 バージョン、DELL G3 パソコンphp のスクリプトをクリアする方法: 1. PHP サンプル ファイルを作成します; 2. "function delScript($string){...}" メソッドを使用して html のスクリプトを削除します。
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; }
PHP ビデオ チュートリアル 」
以上がPHPでスクリプトをクリアする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。