php-src/ext/mysqli/tests/bug28817.phpt
Ulf Wendel 974935e6b8 Next set of files which now feature the new environment variable
MYSQL_TEST_SKIP_CONNECT_FAILURE which controls how connection problems
are handled: failure (MYSQL_TEST_SKIP_CONNECT_FAILURE = false, default)
or skip (MYSQL_TEST_SKIP_CONNECT_FAILURE = true)

Also, some minor tweaking of connection parameters in the tests.
2007-08-09 09:43:28 +00:00

42 lines
681 B
PHP

--TEST--
Bug #28817 (problems with properties declared in the class extending MySQLi)
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
include "connect.inc";
class my_mysql extends mysqli {
public $p_test;
function __construct() {
$this->p_test[] = "foo";
$this->p_test[] = "bar";
}
}
$mysql = new my_mysql();
var_dump($mysql->p_test);
@var_dump($mysql->errno);
$mysql->connect($host, $user, $passwd, $db, $port, $socket);
$mysql->select_db("nonexistingdb");
var_dump($mysql->errno > 0);
$mysql->close();
?>
--EXPECTF--
array(2) {
[0]=>
%s(3) "foo"
[1]=>
%s(3) "bar"
}
NULL
bool(true)