1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
Files
archived-php-src/ext/mysqli/tests/bug38003.phpt
T
2020-07-10 21:05:28 +02:00

24 lines
535 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 Error: Call to private DB::__construct() from global scope in %s
Stack trace:
#0 {main}
thrown in %s