瀏覽代碼

Register an autoloader function for examples.

Daniele Alessandri 14 年之前
父節點
當前提交
9f58d8a663
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      examples/SharedConfigurations.php

+ 7 - 1
examples/SharedConfigurations.php

@@ -1,5 +1,11 @@
 <?php
-require_once '../lib/Predis.php';
+spl_autoload_register(function($class) {
+    $file = __DIR__.'/../lib/'.strtr($class, '\\', '/').'.php';
+    if (file_exists($file)) {
+        require $file;
+        return true;
+    }
+});
 
 $single_server = array(
     'host'     => '127.0.0.1',