antispambot [ WordPress Function ]
antispambot ( $emailaddy, $mailto = 0 )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Converts email addresses characters to HTML entities to block spam bots.
Source
<?php
function antispambot($emailaddy, $mailto=0) {
$emailNOSPAMaddy = '';
srand ((float) microtime() * 1000000);
for ($i = 0; $i < strlen($emailaddy); $i = $i + 1) {
$j = floor(rand(0, 1+$mailto));
if ($j==0) {
$emailNOSPAMaddy .= '&#'.ord(substr($emailaddy,$i,1)).';';
} elseif ($j==1) {
$emailNOSPAMaddy .= substr($emailaddy,$i,1);
} elseif ($j==2) {
$emailNOSPAMaddy .= '%'.zeroise(dechex(ord(substr($emailaddy, $i, 1))), 2);
}
}
$emailNOSPAMaddy = str_replace('@','@',$emailNOSPAMaddy);
return $emailNOSPAMaddy;
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/antispambot « WordPress Codex
Description. Converts email addresses characters to HTML entities to block spam bots. Usage. <?php antispambot( $emailaddy, $mailto ) ?> Parameters ...
codex.wordpress.org - Protection From Harvesters « WordPress Codex
The function antispambot() above parses the e-mail address passed by ... Use of the echo command displays the output of antispambot(). An interesting feature ...
codex.wordpress.org - Secure Your Mail With WordPress Antispambot Function - WP ...
Feb 19, 2009 ... A little-known feature in WordPress is antispambot() from the wp-includes/ formatting.php. It is a kind obfuscator of the email address. It doesn't ...
wpengineer.com - Prevent Email Spam with WordPress AntiSpamBot Function
Oct 5, 2011 ... How to use the antispambot function in WordPress to prevent email spam.
www.wpbeginner.com
Kullanýcý Tartýþmalarý [ wordpress.org ]
- kitchin on "antispambot populated by post mete"
- shackep on "antispambot populated by post mete"
- BenWhale on "[Plugin: Exec-PHP] antispambot() parsing problem?"
- BenWhale on "[Plugin: Exec-PHP] antispambot() parsing problem?"
- saltlakejohn on "how do i add antispambot to mailto?"
- francisx on "how do i add antispambot to mailto?"
- moshu on "how do i add antispambot to mailto?"
- francisx on "how do i add antispambot to mailto?"
- Chris_K on "how do i add antispambot to mailto?"
- Samuel B on "how do i add antispambot to mailto?"