Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 549 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 549 Bytes

Email Obfuscator

Effective email obfuscation in PHP

Background

http://www.celticproductions.net/articles/10/email/php+email+obfuscator.html

I've created Composer package from above code with minor additions (code clean-up, random variable names).

Usage

// helper function
echo obfuscate_email('[email protected]');
echo obfuscate_email('[email protected]', 'Contact us');

// class
echo \Kminek\EmailObfuscator::obfuscate('[email protected]');
echo \Kminek\EmailObfuscator::obfuscate('[email protected]', 'Contact us');