Server IP : 162.213.251.212 / Your IP : 3.139.107.148 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/home/allssztx/public_html/easybuyer/vendor/opis/closure/ |
Upload File : |
<?php /* =========================================================================== * Copyright (c) 2018-2021 Zindex Software * * Licensed under the MIT License * =========================================================================== */ require_once __DIR__ . '/functions.php'; spl_autoload_register(function($class){ $class = ltrim($class, '\\'); $dir = __DIR__ . '/src'; $namespace = 'Opis\Closure'; if(strpos($class, $namespace) === 0) { $class = substr($class, strlen($namespace)); $path = ''; if(($pos = strripos($class, '\\')) !== FALSE) { $path = str_replace('\\', '/', substr($class, 0, $pos)) . '/'; $class = substr($class, $pos + 1); } $path .= str_replace('_', '/', $class) . '.php'; $dir .= '/' . $path; if(file_exists($dir)) { include $dir; return true; } return false; } return false; });