summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/001.phpt
blob: fca937cf5dc57f86c6a2f4ae951433c3f5107a33 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--TEST--
mysqli connect
--FILE--
<?
	$user = "root";
	$passwd = "";
	$dbname = "test";
	$test = "";
	
	/*** test mysqli_connect 127.0.0.1 ***/
	$link = mysqli_connect("127.0.0.1", $user, $passwd);
	$test .= ($link) ? "1" : "0";
	mysqli_close($link);

	/*** test mysqli_connect localhost ***/
	$link = mysqli_connect("localhost", $user, $passwd);
	$test .= ($link) ? "1" : "0";
	mysqli_close($link);

	/*** test mysqli_connect localhost:port ***/
	$link = mysqli_connect("localhost", $user, $passwd, "", 3306);
	$test .= ($link) ? "1" : "0";
	mysqli_close($link);

	/*** test mysqli_real_connect ***/
	$link = mysqli_init();	
	$test.= (mysqli_real_connect($link, "localhost", $user, $passwd)) 
		? "1" : "0";
	mysqli_close($link);

	/*** test mysqli_real_connect with db ***/
	$link = mysqli_init();	
	$test .= (mysqli_real_connect($link, "localhost", $user, $passwd, $dbname)) 
		? "1" : "0";
	mysqli_close($link);

	/*** test mysqli_real_connect with port ***/
	$link = mysqli_init();	
	$test .= (mysqli_real_connect($link, "localhost", $user, $passwd, $dbname, 3306))
		? "1":"0";
	mysqli_close($link);

	/*** test mysqli_real_connect compressed ***/
	$link = mysqli_init();	
	$test .= (mysqli_real_connect($link, "localhost", $user, $passwd, $dbname, 0, NULL, MYSQLI_CLIENT_COMPRESS)) 
		? "1" : "0";
	mysqli_close($link);

	/* todo ssl connections */

	var_dump($test);
?>
--EXPECT--
string(7) "1111111"