?iť?

Your IP : 18.216.190.57


Current Path : /home/scgforma/www/cloud/3rdparty/punic/punic/
Upload File :
Current File : /home/scgforma/www/cloud/3rdparty/punic/punic/punic.php

<?php

spl_autoload_register(
    function ($class) {
        if (strpos($class, 'Punic\\') !== 0) {
            return;
        }
        $file = __DIR__.DIRECTORY_SEPARATOR.'code'.str_replace('\\', DIRECTORY_SEPARATOR, substr($class, strlen('Punic'))).'.php';
        if (is_file($file)) {
            require_once $file;
        }
    }
);