-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrun.php
38 lines (27 loc) · 1.04 KB
/
run.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
$config = (file_exists(__DIR__ . '/config.php')) ? __DIR__ . '/config.php' : __DIR__ . '/config.dist.php';
include $config;
// error_reporting & display_errors
error_reporting(32767);
ini_set('display_errors', 1);
// bootstrap
simple_autoloader_register('Zend', ZF2_PATH);
$exampleToRun = $_SERVER['argv'][1];
if (strpos($exampleToRun, '.php') === false) {
$exampleToRun = rtrim($exampleToRun, '\\/') . DIRECTORY_SEPARATOR . '_main_.php';
}
include __DIR__ . DIRECTORY_SEPARATOR . ltrim($exampleToRun, '\\/');
if (strpos($exampleToRun, '_main_.php') !== false) {
_main_();
}
/**
* Functions
*/
function simple_autoloader_register($namespace, $directory, $checkFile = false) {
spl_autoload_register(function ($class) use ($namespace, $directory, $checkFile) {
if (strpos($class, $namespace . '\\') !== 0) return;
$file = rtrim($directory, '\\/') . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
if ($checkFile && !file_exists($file)) return;
return include $file;
});
}