php-src/ext/mysqli/tests/bug38003.phpt
Nikita Popov c9f27ee422 Display EngineExceptions like ordinary exceptions
TypeException stays as-is for now because it uses messages that are
incompatible with the way exception messages are displayed.

closure_038.phpt and a few others now show that we're generating
too many exceptions for compound operations on undefined properties
-- this needs to be fixed in a followup.
2015-05-15 23:40:32 +02:00

24 lines
589 B
PHP

--TEST--
Bug #38003 (in classes inherited from MySQLi it's possible to call private constructors from invalid context)
--SKIPIF--
<?php if (!extension_loaded("mysqli")) print "skip"; ?>
--FILE--
<?php
class DB extends mysqli {
private function __construct($hostname, $username, $password, $database) {
var_dump("DB::__construct() called");
}
}
$DB = new DB();
echo "Done\n";
?>
--EXPECTF--
Fatal error: Uncaught exception 'EngineException' with message 'Call to private DB::__construct() from invalid context' in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d