>백엔드 개발 >PHP 튜토리얼 >이메일 주소를 인코딩하는 PHP 함수

이메일 주소를 인코딩하는 PHP 함수

WBOY
WBOY원래의
2016-07-25 09:07:301101검색
  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. $encoded = '';

  13. return $encoded;

  14. }
  15. ?>

复制代码


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.