mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
25 lines
543 B
PHP
25 lines
543 B
PHP
--TEST--
|
|
Bug #26697 (calling class_exists on a nonexistent class in __autoload results in segfault)
|
|
--SKIPIF--
|
|
<?php if (function_exists('__autoload')) die('skip __autoload() declared in auto_prepend_file');?>
|
|
--FILE--
|
|
<?php
|
|
|
|
function __autoload($name)
|
|
{
|
|
echo __METHOD__ . "($name)\n";
|
|
var_dump(class_exists('NotExistingClass'));
|
|
echo __METHOD__ . "($name), done\n";
|
|
}
|
|
|
|
var_dump(class_exists('NotExistingClass'));
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
__autoload(NotExistingClass)
|
|
bool(false)
|
|
__autoload(NotExistingClass), done
|
|
bool(false)
|
|
===DONE===
|