Advertisement
Guest User

Untitled

a guest
Jun 19th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. parent::initController($request, $response, $logger);
  15. $license_key = LICENSE_KEY;
  16.  
  17. if (!function_exists('lisansimo_check')) {
  18. function lisansimo_check($license_key, $lisansimo_server, $time)
  19. {
  20. $stime = time();
  21. if (!isset($_COOKIE['lisansimo']) || ($time < ($stime - (int) $_COOKIE['lisansimo']))) {
  22. unset($_COOKIE['lisansimo']);
  23. setcookie('lisansimo', $stime);
  24. }
  25. if (($time == 0) || !isset($_COOKIE['lisansimo']) || (($_COOKIE['lisansimo'] - $stime) == 0)) {
  26. $lisansimo_ch = curl_init();
  27. .....................................................................
  28. ..................................
  29. ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement