فهرست منبع

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',