|
Posted by Littlefire on 05/31/06 08:23
universalbitmapper wrote:
> Hi,
>
> I'm looking for a way to protect my sources php/CSS/js, there is
> software to do it, but the licence price shifts-scrolls tenfold, anyway
> if one customer is really an expert, she could find out
>
> So I need pro advice on that one
>
> Many thanks
>
>
> Ishke Baha
How about a completely free "obfuscator"?
function obf($string) {
$obf_string = "";
foreach ( explode("", $string) as $char ) {
$obf_string .= ord($char);
}
return $obf_string;
}
Obviously, $string could be the contents of a file. Make a php command line
script to obfuscate files this way.
A
Navigation:
[Reply to this message]
|