File:
[ELWIX - Embedded LightWeight unIX -] /
embedaddon /
php /
ext /
mysqli /
tests /
mysqli_fetch_lengths_oo.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, 1 month 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_result->lengths
--SKIPIF--
<?php
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
?>
--FILE--
<?php
require_once("connect.inc");
if (!$mysqli = new my_mysqli($host, $user, $passwd, $db, $port, $socket))
printf("[001] Cannot connect\n");
require('table.inc');
if (!$res = $mysqli->query("SELECT id, label FROM test ORDER BY id LIMIT 1")) {
printf("[002] [%d] %s\n", $mysqli->errno, $mysqli->error);
}
var_dump($res->lengths);
while ($row = $res->fetch_assoc())
var_dump($res->lengths);
var_dump($res->lengths);
$res->free_result();
var_dump($res->lengths);
$mysqli->close();
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
<?php
require_once("clean_table.inc");
?>
--EXPECTF--
NULL
array(2) {
[0]=>
int(1)
[1]=>
int(1)
}
NULL
Warning: main(): Property access is not allowed yet in %s on line %d
NULL
done!
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>