Re: [OBFUSCATING] From $20 to $300 ??



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
.



Relevant Pages

  • [OBFUSCATING] From $20 to $300 ??
    ... I'm looking for a way to protect my sources php/CSS/js, ... software to do it, but the licence price shifts-scrolls tenfold, anyway ... if one customer is really an expert, ...
    (comp.lang.php)
  • Re: From $20 to $300 ??
    ... I'm looking for a way to protect my sources php/CSS/js, ... software to do it, but the licence price shifts-scrolls tenfold, anyway ... <?php echo 'Just another PHP saint'; ...
    (comp.lang.php)