mirror of
https://github.com/php/php-src.git
synced 2026-04-16 20:41:18 +02:00
12 lines
208 B
PHP
12 lines
208 B
PHP
--TEST--
|
|
Bug #52339: SPL autoloader breaks class_exists()
|
|
--FILE--
|
|
<?php
|
|
var_dump(class_exists('asdfasdf'));
|
|
spl_autoload_register();
|
|
var_dump(class_exists('asdfasdf'));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(false)
|