Revision: 78053
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 1, 2019 00:13 by PietKeizer
Initial Code
function makeTextUnreadable($word,$width=1,$height=3) { $arr=['#ddd','#453','#aaa','#111']; $back = ""; for($i=0; $i < strlen($word); $i++) { $back .= '<div style="height: '.($height*4).'px;width: '.($width*4).'px;float: left;">'; for($j=0;$j<=$height;$j++) { $back .= '<div style="margin: 0;height: 4px;width: '.($width*4).'px;background-color: '.$arr[rand(0,3)].';"></div>'; } $back .= '</div>'; } return $back; }
Initial URL
Initial Description
Function for obfuscate Text in html pages. good for making screenshot and mind data protection if needed. changes Text into many small divs with different bgcolor.
Initial Title
function to obfuscate web text into random design
Initial Tags
data, text
Initial Language
PHP