PHP Bulk Delete Hyperlink implementation method, PHP bulk Delete hyperlink _php tutorial

Source: Internet
Author: User

PHP Bulk Delete Hyperlink implementation method, PHP bulk Delete hyperlinks


The most common notation for removing hyperlinks from HTML text content is as follows:
Copy the code as follows: $str =preg_replace ("/]*href=[^>]*>|<\/[^a]*a[^>]*>/i", "", $content);
1. Delete hyperlinks in HTML text content
Copy the Code code as follows: Ereg_replace ("]*>|<\/a>", "", $content);
2. Clear the hyperlink containing the specified keyword

Here are several ways to get the text content of hyperlinks in HTML text content:

Method one Preg_match_all ('/< (a|a) [s]{0,1}[w= ':()]*>[nrn]* (check user) [nrn]*/I
 
   ', $string, $matches);  Method two Preg_match_all ('/check user/i ', $string, $matches); Print_r ($matches);  Methods three Preg_match_all ('/]*>[^<]*/i ', $string, $matches); Print_r ($matches);  Method four Preg_match_all ('/check user/is ', $str, $arr); Print_r ($arr);  

The above is the PHP bulk deletion of four methods of hyperlinks, I hope that everyone's learning has helped.

http://www.bkjia.com/PHPjc/1062500.html www.bkjia.com true http://www.bkjia.com/PHPjc/1062500.html techarticle PHP Bulk Delete hyperlink implementation method, PHP bulk Delete hyperlinks to remove a piece of HTML text content hyperlinks the most common way to do this: Copy the code as follows: $str =PR ...

  • 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.