File: 
 
[ELWIX - Embedded LightWeight unIX -] / 
embedaddon / 
php / 
ext / 
mysqli / 
tests / 
mysqli_init.phpt
 Revision 
1.1.1.1 (vendor branch): 
download - view: 
text, 
annotated - 
select for diffs - 
revision graph
Tue Feb 21 23:47:58 2012 UTC (13 years, 8 months ago) by 
misho
Branches: 
php,
MAIN
CVS tags: 
v5_4_3elwix,
v5_4_29p0,
v5_4_29,
v5_4_20p0,
v5_4_20,
v5_4_17p0,
v5_4_17,
v5_3_10,
HEAD
php
--TEST--
mysqli_init()
--SKIPIF--
<?php 
require_once('skipif.inc');
require_once('skipifemb.inc'); 
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
	$link = mysqli_init();
	if (!is_object($link) && false !== $link)
		printf("[001] Expecting object/mysqli_link or boolean/false, got %s/%s\n", gettype($link), $link);
	if (is_object($link) && 'mysqli' != get_class($link))
		printf("[002] Expecting object of type mysqli got object of type %s\n", get_class($link));
	if ($link)
		mysqli_close($link);
	print "done!";
?>
--EXPECTF--
done!
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>