Shield robots from searching php code for email addresses from your website

Source: Internet
Author: User
How can I shield a robot from searching for an email address from your website and then sending spam? if you need a friend, it's annoying to refer to spam, paste the following method to automatically shield robots from collecting email addresses from your website.
The code is as follows:
Function security_remove_emails ($ content ){
$ Pattern = '/([a-zA-Z0-9. _ % +-] + @ [a-zA-Z0-9.-] + \. [a-zA-Z] {2, 4})/I ';
$ Fix = preg_replace_callback ($ pattern,
"Security_remove_emails_logic", $ content );

Return $ fix;
}
Function security_remove_emails_logic ($ result ){
Return antispambot ($ result [1]);
}
Add_filter ('The _ content', 'Flex _ remove_emails ', 20 );
Add_filter ('widget _ text', 'Flex _ remove_emails ', 20 );

Put this in the functions. php file. if the robot collects the email address, it will automatically block it.

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.