summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/bug33263.phpt
blob: 44f9167c95dd92b74ae12b5728a358d4baf361f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
--TEST--
bug #33263 (mysqli_real_connect in __construct) 
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

	include "connect.inc";

	class test extends mysqli
	{
		public function __construct($host, $user, $passwd, $db) {
			parent::init();
			parent::real_connect($host, $user, $passwd, $db);
		}
	}

	$mysql = new test($host, $user, $passwd, "test");

	$stmt = $mysql->prepare("SELECT DATABASE()");
	$stmt->execute();
	$stmt->bind_result($db);
	$stmt->fetch();
	$stmt->close();

	var_dump($db);

	$mysql->close();	
?>
--EXPECT--
string(4) "test"