php regular expression replacement and regular replacement function

Source: Internet
Author: User
Keywords Network programming PHP tutorial
Tags example expression function jpg network network programming php php tutorial

php regular expression replacement and regular replacement function
/ *
Here we are to specify the regular out of the inner space replaced by something else, so we will use the regular replacement function preg_replace, the following example is


The text has the following label

<img style src = "<? = $ url?> / images / styleno.jpg" width = "30" height = "30" />
<img style src = "<? = $ url?> / images / styleno.jpg" width = "30" height = "30" />
<img src = "images / styleno.jpg" width = "30" height = "30" />
<img src = "images / styleno.jpg" width = "30" height = "30" />
Would like to replace them with a style with a regular one like <img src = "<? = $ Url?> / Images / styleno.jpg" width = "30" height = "30" />
No style is replaced by <img src = "<? = $ Path?> / Images / styleno.jpg" width = "30" height = "30" />

* /

$ content1 = '<img style src = "<? = $ url?> / images / styleno.jpg" width = "30" height = "30" />';
$ content = '<img style src = "/ images / styleno.jpg" width = "30" height = "30" />';
$ a = '<img src = "<? = $ url?> / images / styleno.jpg" width = "30" height = "30" />';
echo preg_replace ('/ <imgs + styles + src = [' "]? [^ '"] * [' "]? s +. * /> / i ', $ a, $ content);

$ content1 = '<img src = "images / styleno.jpg" width = "30" height = "30" />';
$ b = '<img src = "<? = $ path?> / images / styleno.jpg" width = "30" height = "30" />';
echo preg_replace ('/ <img src = [' "]? [^ '"] * [' "]? s +. * /> / i ', $ b, $ content1);

Related Article

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.