Gexe Posted August 16, 2007 Share Posted August 16, 2007 Can SOme1 Please Decode This // DECODE if (strlen($packet) < 1) return false; $packet = str_split($packet); foreach ($packet as &$char){ $char = ord($char); $char -= 128; if ($char < 0) $char = 256 + $char; } $newpacket = ''; $i = 0; while ($i < count($packet)){ $newpacket[] = $packet[$i]; $i += 2; } $i -= 1; if(count($packet) % 2) $i = count($packet)-2; while ($i > 0){ $newpacket[] = $packet[$i]; $i -= 2; } foreach ($newpacket as &$char) $char = chr($char); return implode('',$newpacket); // ENCODE if (strlen($packet) < 1) return false; $packet = str_split($packet); foreach ($packet as &$char){ $char = ord($char); $char -= 128; if ($char < 0) $char = 256 + $char; } $newpacket = ''; $i = 0; $j = 0; while ($i < count($packet)){ $newpacket[$i] = $packet[$j]; $i += 2; $j++; } $i -= 3; if(!(count($packet) % 2)) $i = count($packet)-1; while ($i > 0){ $newpacket[$i] = $packet[$j]; $i -= 2; $j++; } ksort($newpacket); foreach ($newpacket as &$char) $char = chr($char); return implode('',$newpacket); Link to comment https://forums.phpfreaks.com/topic/65248-php-commands/ Share on other sites More sharing options...
NArc0t1c Posted August 16, 2007 Share Posted August 16, 2007 Decode, Encode.., How do you mean? and use [ code ][/ code ] tags please. Link to comment https://forums.phpfreaks.com/topic/65248-php-commands/#findComment-325822 Share on other sites More sharing options...
Gexe Posted August 16, 2007 Author Share Posted August 16, 2007 I Really Dont Like My Rank Im So Not A N00bie They are packets i need them to be decoded Link to comment https://forums.phpfreaks.com/topic/65248-php-commands/#findComment-325831 Share on other sites More sharing options...
trq Posted August 16, 2007 Share Posted August 16, 2007 Can SOme1 Please Decode This Were not here to do anything for anyone. If you need help, explain your issue. If you want something done, hire a programmer. Link to comment https://forums.phpfreaks.com/topic/65248-php-commands/#findComment-325833 Share on other sites More sharing options...
Recommended Posts