/var/www/hkosl.com/nick/codeigniter/application/vendor/gettext/languages/src/autoloader.php


1
2
3
4
5
6
7
8
9
10
11
12
<?php
spl_autoload_register
(
    function (
$class) {
        if (
strpos($class'Gettext\\Languages\\') !== 0) {
            return;
        }
        
$file __DIR__.str_replace('\\'DIRECTORY_SEPARATORsubstr($classstrlen('Gettext\\Languages'))).'.php';
        if (
is_file($file)) {
            require_once 
$file;
        }
    }
);