1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00
Files
archived-php-src/ext/mysqli/tests/bug46614.phpt
T
Nikita Popov c5401854fc Run tidy
This should fix most of the remaining issues with tabs and spaces
being mixed in tests.
2020-09-18 14:28:32 +02:00

31 lines
606 B
PHP

--TEST--
Bug #46614 (Extended MySQLi class gives incorrect empty() result)
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
if (!defined("MYSQLI_ASYNC")) {
die("skip mysqlnd only");
}
?>
--FILE--
<?php
class MySQL_Ext extends mysqli{
protected $fooData = array();
public function isEmpty()
{
$this->extData[] = 'Bar';
return empty($this->extData);
}
}
include ("connect.inc");
$MySQL_Ext = new MySQL_Ext($host, $user, $passwd, $db, $port, $socket);
$isEmpty = $MySQL_Ext->isEmpty();
var_dump($isEmpty);
?>
--EXPECT--
bool(false)