How to implement PHP bulk Delete hyperlinks _php tips

Source: Internet
Author: User

Clear out a section of hyperlinks in HTML text The most common wording can be as follows:

Copy Code code as follows:
$str =preg_replace ("/<a[^>]*href=[^>]*>|<\/[^a]*a[^>]*>/i", "", $content);

1. Delete hyperlinks in HTML text content
Copy Code code as follows:
Ereg_replace ("<a [^>]*>|<\/a>", "", $content);

2. Clear the hyperlink containing the specified keyword

$find = "This string is I find"; 
$string = ' <font color= ' red ' > This section will be replaced with </font> '//the content of the hyperlink replace 
Echo ereg_replace (' <a ([^>]*) > ([^<]* '. $find. " [^>]*) </a> ', ' <font color= ' red ' >\\2</font> ', $content); 

Here are several ways to get a text content that gets hyperlinks in HTML text content:

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

The above is a lot of PHP delete hyperlink Four ways, I hope to help you learn.

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.