19 Name: VIPPER : 2008-04-19 00:33 [Del]
<?php
$stri=file_get_contents(__FILE__);
$stri=preg_replace_callback("/[0-9]*[a-z]+/i",create_function("$matches",'return "du".str_repeat("r",rand(1,6));'),$stri);
$stri=str_replace(array("&","<",">","\n"),array("&","<",">","\n<br>"),$stri);
echo $stri;
?>