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

PHP编码电子邮件地址

程序员文章站 2024-01-03 22:08:28
...
  1. 使用此代码,可以将任何电子邮件地址编码为 html 字符实体,以防止被垃圾邮件程序收集。
  1. function encode_email($email='info@domain.com', $linkText='Contact Us', $attrs ='class="emailencoder"' )
  2. {
  3. // remplazar aroba y puntos
  4. $email = str_replace('@', '@', $email);
  5. $email = str_replace('.', '.', $email);
  6. $email = str_split($email, 5);
  7. $linkText = str_replace('@', '@', $linkText);
  8. $linkText = str_replace('.', '.', $linkText);
  9. $linkText = str_split($linkText, 5);
  10. $part1 = '';
  11. $part4 = '
  12. ';
  13. $encoded = '';
  14. return $encoded;
  15. }
复制代码

上一篇:

下一篇: