PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
google
/
service
<?php spl_autoload_register(function($className) { $classPath = explode('_', $className); if ($classPath[0] != 'Google') return; if (count($classPath) > 3) { // Maximum class file path depth in this project is 3. $classPath = array_slice($classPath, 0, 3); } $filePath = dirname(__FILE__) . '/' . implode('/', $classPath) . '.php'; if (file_exists($filePath)) require_once $filePath; });
[+]
..
[-] autoload.php
[edit]
[+]
Google