PHP uses regular filter JS script code Instance _php instance

Source: Internet
Author: User
Tags preg

Matching rules cannot be "/<script.*<\/script>/i" because it does not match to line breaks, so many rows of JS will not match. To use "/<script[\s\s]*?<\/script>/i". What's inside? represents as little repetition as possible, that is, matching the nearest </script>.

Source code Example:

Copy Code code as follows:

<?php

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

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

?>

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.