Guest User

Untitled

a guest
Apr 12th, 2026
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP8 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 8.1.0.9
  8. * @ Author : DeZender
  9. * @ Release on : 27.10.2023
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. class rdns extends AddonModule
  15. {
  16. public $version = '1.0';
  17.  
  18. public function __construct()
  19. {
  20. if (!function_exists('curl_init') || !function_exists('curl_exec') || !function_exists('curl_setopt')) {
  21. exit('PHP Curl Library not found');
  22. }
  23.  
  24. function diff_day($start = '', $end = '')
  25. {
  26. $dStart = new DateTime($start);
  27. $dEnd = new DateTime($end);
  28. $dDiff = $dStart->diff($dEnd);
  29. .........................................................
  30. ..............................
  31. ............
Advertisement
Add Comment
Please, Sign In to add comment