PHP uses regular filter JS script code example

Source: Internet
Author: User
Tags preg

Matching rules can not be used "/<script.*<\/script>/i", because it does not match to the newline character, then the multi-line JS will not be matched off.

To use "/<script[\s\s]*?<\/script>/i". What's inside? means as little repetition as possible, that is, matching the nearest </script>.

Source code Example:

.The code is as follows:
<?php

Header ("Content-type:text/html;charset=utf-8");
$str = ' <script type= ' Text/javascript "src=" Dd.js "></script>
Test PHP regular match out JS code test PHP regular match out JS code test PHP regular match out JS code test PHP regular match out JS code test PHP regular match out JS code test PHP regular match out JS code
<script type= "Text/javascript" src= "123.js" ></script>
<script type= "Text/javascript" >
var AA = "Sdsds";
alert (AA);
</script>
Test PHP regular match the JS Code ';

$preg = "/<script[\s\s]*?<\/script>/i";
$newstr = Preg_replace ($preg, "", $str, 3); The fourth parameter, 3, replaces 3 times, the default is-1, replaces all
Echo $newstr;

?>

PHP uses regular filter JS script code example

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.