Cheetah
autoload.php
Go to the documentation of this file.
1 <?php
31 if (version_compare(PHP_VERSION, '5.4.0', '<')) {
32  throw new Exception('The Facebook SDK requires PHP version 5.4 or higher.');
33 }
34 
35 require_once __DIR__ . '/polyfills.php';
36 
47 spl_autoload_register(function ($class) {
48  // project-specific namespace prefix
49  $prefix = 'Facebook\\';
50 
51  // For backwards compatibility
52  $customBaseDir = '';
53  // @todo v6: Remove support for 'FACEBOOK_SDK_V4_SRC_DIR'
54  if (defined('FACEBOOK_SDK_V4_SRC_DIR')) {
55  $customBaseDir = FACEBOOK_SDK_V4_SRC_DIR;
56  } elseif (defined('FACEBOOK_SDK_SRC_DIR')) {
57  $customBaseDir = FACEBOOK_SDK_SRC_DIR;
58  }
59  // base directory for the namespace prefix
60  $baseDir = $customBaseDir ?: __DIR__ . '/';
61 
62  // does the class use the namespace prefix?
63  $len = strlen($prefix);
64  if (strncmp($prefix, $class, $len) !== 0) {
65  // no, move to the next registered autoloader
66  return;
67  }
68 
69  // get the relative class name
70  $relativeClass = substr($class, $len);
71 
72  // replace the namespace prefix with the base directory, replace namespace
73  // separators with directory separators in the relative class name, append
74  // with .php
75  $file = rtrim($baseDir, '/') . '/' . str_replace('\\', '/', $relativeClass) . '.php';
76 
77  // if the file exists, require it
78  if (file_exists($file)) {
79  require $file;
80  }
81 });
php