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

php编码电子邮件地址的函数

程序员文章站 2022-04-07 22:11:50
...
  1. function encode_email($email='test@jbxue.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. }
  16. ?>
复制代码