欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

PHP编码电子邮件地址,防止被垃圾邮件程序收集

程序员文章站 2022-04-11 19:07:53
...
PHP编码电子邮件地址

以下代码可以将任何电子邮件地址编码为 html 字符实体,以防止被垃圾邮件程序收集。

function encode_email($email='info@domain.com', $linkText='Contact Us', $attrs ='class="emailencoder"' )  
{  
    // remplazar aroba y puntos  
    $email = str_replace('@', '@', $email);  
    $email = str_replace('.', '.', $email);  
    $email = str_split($email, 5);    
  
    $linkText = str_replace('@', '@', $linkText);  
    $linkText = str_replace('.', '.', $linkText);  
    $linkText = str_split($linkText, 5);    
  
    $part1 = '';  
    $part4 = '';    
  
    $encoded = '';    
  
    return $encoded;  
} 
相关标签: php 发邮件