Heim >Backend-Entwicklung >PHP-Tutorial >PHP编码电子邮件地址

PHP编码电子邮件地址

WBOY
WBOYOriginal
2016-07-25 09:07:461197Durchsuche
  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. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn