当前位置:Gxlcms > PHP教程 > PHP编码电子邮件地址,防止被垃圾邮件程序收集

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

时间:2021-07-01 10:21:17 帮助过:32人阅读

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;  
} 

人气教程排行