summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug32490.phpt
blob: 3d877c0d9caa2032fc05d8e06d823c843f2017b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug #32490 (constructor of mysqli has wrong name)
--SKIPIF--
<?php if (!extension_loaded("mysqli")) die("skip mysqli not available"); ?>
--FILE--
<?php
var_dump(method_exists("mysqli", "mysqli"));
var_dump(method_exists("mysqli", "__construct"));
?>
--EXPECT--
bool(false)
bool(true)