4 if (!defined(
'HTMLPURIFIER_PREFIX')) {
5 define(
'HTMLPURIFIER_PREFIX', realpath(dirname(__FILE__) .
'/..'));
10 if (!defined(
'PHP_EOL')) {
11 switch (strtoupper(substr(PHP_OS, 0, 3))) {
13 define(
'PHP_EOL',
"\r\n");
16 define(
'PHP_EOL',
"\r");
19 define(
'PHP_EOL',
"\n");
39 if (!
$file)
return false;
40 require HTMLPURIFIER_PREFIX .
'/' .
$file;
48 if (strncmp(
'HTMLPurifier', $class, 12) !== 0)
return false;
50 if (strncmp(
'HTMLPurifier_Language_', $class, 22) === 0) {
51 $code = str_replace(
'_',
'-', substr($class, 22));
52 $file =
'HTMLPurifier/Language/classes/' . $code .
'.php';
54 $file = str_replace(
'_',
'/', $class) .
'.php';
56 if (!file_exists(HTMLPURIFIER_PREFIX .
'/' .
$file))
return false;
64 $autoload = array(
'HTMLPurifier_Bootstrap',
'autoload');
65 if ( ($funcs = spl_autoload_functions()) ===
false ) {
66 spl_autoload_register($autoload);
67 }
elseif (function_exists(
'spl_autoload_unregister')) {
68 $compat = version_compare(PHP_VERSION,
'5.1.2',
'<=') &&
69 version_compare(PHP_VERSION,
'5.1.0',
'>=');
70 foreach ($funcs as $func) {
71 if (is_array($func)) {
74 $reflector =
new ReflectionMethod($func[0], $func[1]);
75 if (!$reflector->isStatic()) {
77 HTML Purifier autoloader registrar is not compatible
78 with non-static object methods due to PHP Bug #44144;
79 Please do not use HTMLPurifier.autoload.php (or any
80 file that includes this file); instead, place the code:
81 spl_autoload_register(array(\'HTMLPurifier_Bootstrap\', \'autoload\'))
82 after your own autoloaders.
87 if (
$compat) $func = implode(
'::', $func);
89 spl_autoload_unregister($func);
91 spl_autoload_register($autoload);
92 foreach ($funcs as $func) spl_autoload_register($func);