php-src/ext/mysqli/tests/001.phpt

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2003-02-12 00:46:29 +00:00
--TEST--
mysqli connect
2004-12-04 08:50:33 +00:00
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php require_once('skipifemb.inc'); ?>
2003-02-12 00:46:29 +00:00
--FILE--
2003-08-12 02:05:21 +00:00
<?php
include "connect.inc";
2003-08-12 02:05:21 +00:00
2003-02-13 08:54:46 +00:00
$dbname = "test";
2003-02-12 00:46:29 +00:00
$test = "";
2003-02-12 00:46:29 +00:00
/*** test mysqli_connect localhost:port ***/
$link = mysqli_connect($host, $user, $passwd, "", 3306);
2003-02-12 00:46:29 +00:00
$test .= ($link) ? "1" : "0";
mysqli_close($link);
/*** test mysqli_real_connect ***/
$link = mysqli_init();
$test.= (mysqli_real_connect($link, $host, $user, $passwd))
2003-02-12 00:46:29 +00:00
? "1" : "0";
mysqli_close($link);
/*** test mysqli_real_connect with db ***/
$link = mysqli_init();
$test .= (mysqli_real_connect($link, $host, $user, $passwd, $dbname))
2003-02-12 00:46:29 +00:00
? "1" : "0";
mysqli_close($link);
/*** test mysqli_real_connect with port ***/
$link = mysqli_init();
$test .= (mysqli_real_connect($link, $host, $user, $passwd, $dbname, 3306))
2003-02-12 00:46:29 +00:00
? "1":"0";
mysqli_close($link);
/*** test mysqli_real_connect compressed ***/
$link = mysqli_init();
$test .= (mysqli_real_connect($link, $host, $user, $passwd, $dbname, 0, NULL, MYSQLI_CLIENT_COMPRESS))
2003-02-12 00:46:29 +00:00
? "1" : "0";
mysqli_close($link);
/* todo ssl connections */
var_dump($test);
?>
--EXPECTF--
%s(5) "11111"