summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug38003.phpt
blob: f3a4823b9d0e8853dc2e282ccc49bd941c93a8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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: Access level to DB::__construct() must be public (as in class mysqli) in %s%ebug38003.php on line %d