当前位置:Gxlcms > PHP教程 > php编码电子邮件地址的函数

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

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

  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 = '$part2 = 'ilto:';

  11. $part3 = '" '. $attrs .' >';
  12. $part4 = '';

  13. $encoded = '';

  14. return $encoded;

  15. }
  16. ?>

人气教程排行