본문 바로가기

php

스팸용 메일수집 로봇을 막는 PHP Email encoder ! Prevent Spam Bots (Collecting Email Addresses)

스팸 메일 용 이메일 주소 수집 봇을 막는  PHP Email encode 함수이다.
아래 링크에서 참고하였다.
http://davidwalsh.name/php-email-encode-prevent-spam 

function encode_email($e)
{
  for ($i = 0; $i < strlen($e); i++) { $output .= '&#'.ord($e[$i]).';'; }
  return $output;
}

사용법은 아래와 같다.

echo(encode_email('myid@biyott.com'));