20 lines
405 B
PHP
20 lines
405 B
PHP
--TEST--
|
|
Incomplete initialization edge case where mysql->mysql is NULL
|
|
--EXTENSIONS--
|
|
mysqli
|
|
--FILE--
|
|
<?php
|
|
|
|
mysqli_report(MYSQLI_REPORT_OFF);
|
|
$mysqli = new mysqli();
|
|
@$mysqli->__construct('doesnotexist');
|
|
$mysqli->close();
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot call constructor twice in %s:%d
|
|
Stack trace:
|
|
#0 %s(%d): mysqli->__construct('doesnotexist')
|
|
#1 {main}
|
|
thrown in %s on line %d
|