File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug65322.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Sun Jun 15 20:04:04 2014 UTC (10 years, 9 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29, HEAD
php 5.4.29

--TEST--
Bug #65322: compile time errors won't trigger auto loading
--FILE--
<?php

spl_autoload_register(function($class) {
    var_dump($class);
    class B {}
});

set_error_handler(function($_, $msg, $file) {
    var_dump($msg, $file);
    new B;
});

eval('class A { function a() {} function __construct() {} }');

?>
--EXPECTF--
string(50) "Redefining already defined constructor for class A"
string(%d) "%s(%d) : eval()'d code"
string(1) "B"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>