Advertisement
Guest User

Untitled

a guest
Dec 27th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for SourceGuardian & phpSHIELD)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. function microtime_float() {
  15. list( $usec, $sec ) = explode( ' ', microtime( ) );
  16. return (double)$usec + (double)$sec;
  17. }
  18.  
  19. function gzip_parse($content) {
  20. $lines = explode( '
  21. ', $content );
  22. foreach ($lines as $line) {
  23. $len = strlen( $line );
  24. $i = 0;
  25. $arr = str_split( $line );
  26. foreach ($arr as $char) {
  27. if (127 < ord( $char )) {
  28. $i++;
  29. $start = true;
  30. }
  31. }
  32.  
  33.  
  34. if ($len / 3 < $i) {
  35. $result .= '
  36. ' . $line;
  37. } else {
  38. if (!$start) {
  39. $header .= '
  40. ' . $line;
  41. }
  42. }
  43. }
  44.  
  45.  
  46. if (strlen( $result ) == 0) {
  47. return $content;
  48. } else {
  49. return $header . @gzinflate( @substr( $result, 11 ) );
  50. }
  51.  
  52. }
  53.  
  54. function ip($server_ip = '') {
  55. .....................................................................
  56. .................................
  57. ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement