ipwnzphp Posted March 23, 2007 Share Posted March 23, 2007 Im trying to think of a way to encode php with out using zend encoder. Say ya dont have the money to buy zend encoder. Base 64 isnt good enough people can just echo out the decode and then change what they need recode it than use the new output to decode. So how could you really go about this? Descions Descions ??? Link to comment https://forums.phpfreaks.com/topic/43925-encode-php-with-out-zend-or-ion/ Share on other sites More sharing options...
jguy Posted March 23, 2007 Share Posted March 23, 2007 If you're using Linux, you can always use the system() or exec() function to run the uuencode command: ie will list a dir: echo exec('ls'); I used something like this once: exec("uuencode -m $inFileLocation nothing_out",$returnArray); Link to comment https://forums.phpfreaks.com/topic/43925-encode-php-with-out-zend-or-ion/#findComment-213262 Share on other sites More sharing options...
per1os Posted March 23, 2007 Share Posted March 23, 2007 I wouldn't encode, OS all the way for me. Gotta give back the community that has been so generous to me. Link to comment https://forums.phpfreaks.com/topic/43925-encode-php-with-out-zend-or-ion/#findComment-213263 Share on other sites More sharing options...
ipwnzphp Posted March 23, 2007 Author Share Posted March 23, 2007 I wouldn't encode, OS all the way for me. Gotta give back the community that has been so generous to me. It is for a key system Link to comment https://forums.phpfreaks.com/topic/43925-encode-php-with-out-zend-or-ion/#findComment-213265 Share on other sites More sharing options...
ipwnzphp Posted March 23, 2007 Author Share Posted March 23, 2007 If you're using Linux, you can always use the system() or exec() function to run the uuencode command: ie will list a dir: echo exec('ls'); I used something like this once: exec("uuencode -m $inFileLocation nothing_out",$returnArray); Interisting Link to comment https://forums.phpfreaks.com/topic/43925-encode-php-with-out-zend-or-ion/#findComment-213266 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.