The PHP regular expression matches the IMG, and PHP is extracting or replacing any of the attributes in the image img tag.

Source: Internet
Author: User
Tags php regular expression

PHP is extracting or replacing the IMG Tag property PHP regular Expression matching img, PHP is extracting or replacing any attribute in the image img tag.
123456789101112131415161718192021222324252627282930 <?php/*PHP正则提取图片img标记中的任意属性*/$str = ‘<center><br />PHP正则提取或更改图片img标记中的任意属性</center>‘;//1、取整个图片代码preg_match(‘/<\s*img\s+[^>]*?src\s*=\s*(\‘|\")(.*?)\\1[^>]*?\/?\s*>/i‘,$str,$match);echo $match[0];//2、取widthpreg_match(‘//i‘,$str,$match);echo $match[1]; //3、取heightpreg_match(‘//i‘,$str,$match);echo $match[1];//4、取srcpreg_match(‘//i‘,$str,$match);echo $match[1];/*PHP正则替换图片img标记中的任意属性*///1、将src="/uploads/images/20100516000.jpg"替换为src="/uploads/uc/images/20100516000.jpg")print preg_replace(‘/()/i‘,"\${1}uc/images/\${3}",$str);echo ";//2、将src="/uploads/images/20100516000.jpg"替换为src="/uploads/uc/images/20100516000.jpg",并省去宽和高print preg_replace(‘/(/i‘,"\${1} \${2}uc/images/\${3}>",$str);?>

The PHP regular expression matches the IMG, and PHP is extracting or replacing any of the attributes in the image img tag.

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.