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