summaryrefslogtreecommitdiff
path: root/ext/mysql/tests/mysql_field_seek.phpt
diff options
context:
space:
mode:
authorUlf Wendel <uw@php.net>2007-07-11 14:36:26 +0000
committerUlf Wendel <uw@php.net>2007-07-11 14:36:26 +0000
commitdabb012f9133a2f988c6342c1e6e3c94731dfc0d (patch)
treee82703becfff977988301199f990fc7860c68c6e /ext/mysql/tests/mysql_field_seek.phpt
parent922f3d5512bf7558c34695318e3e2b6f862cf97a (diff)
downloadphp-git-dabb012f9133a2f988c6342c1e6e3c94731dfc0d.tar.gz
Removing reference to skipifemb.inc which is not needed and
Whitespace/Coding Standards.
Diffstat (limited to 'ext/mysql/tests/mysql_field_seek.phpt')
-rw-r--r--ext/mysql/tests/mysql_field_seek.phpt59
1 files changed, 29 insertions, 30 deletions
diff --git a/ext/mysql/tests/mysql_field_seek.phpt b/ext/mysql/tests/mysql_field_seek.phpt
index c5a40dbb90..6a3a647625 100644
--- a/ext/mysql/tests/mysql_field_seek.phpt
+++ b/ext/mysql/tests/mysql_field_seek.phpt
@@ -2,40 +2,39 @@
mysql_field_seek()
--SKIPIF--
<?php require_once('skipif.inc'); ?>
-<?php require_once('skipifemb.inc'); ?>
--FILE--
<?php
- include "connect.inc";
+include "connect.inc";
- $tmp = NULL;
- $link = NULL;
-
- if (!is_null($tmp = @mysql_field_seek()))
- printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
-
- if (!is_null($tmp = @mysql_field_seek($link)))
- printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
+$tmp = NULL;
+$link = NULL;
- require('table.inc');
- if (!$res = mysql_query("SELECT id, label FROM test ORDER BY id LIMIT 1", $link)) {
- printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
- }
-
- var_dump(mysql_field_seek($res, -1));
- var_dump(mysql_fetch_field($res));
- var_dump(mysql_field_seek($res, 0));
- var_dump(mysql_fetch_field($res));
- var_dump(mysql_field_seek($res, 1));
- var_dump(mysql_fetch_field($res));
- var_dump(mysql_field_seek($res, 2));
- var_dump(mysql_fetch_field($res));
-
- mysql_free_result($res);
-
- var_dump(mysql_field_seek($res, 0));
-
- mysql_close($link);
- print "done!";
+if (!is_null($tmp = @mysql_field_seek()))
+ printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
+
+if (!is_null($tmp = @mysql_field_seek($link)))
+ printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
+
+require('table.inc');
+if (!$res = mysql_query("SELECT id, label FROM test ORDER BY id LIMIT 1", $link)) {
+ printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link));
+}
+
+var_dump(mysql_field_seek($res, -1));
+var_dump(mysql_fetch_field($res));
+var_dump(mysql_field_seek($res, 0));
+var_dump(mysql_fetch_field($res));
+var_dump(mysql_field_seek($res, 1));
+var_dump(mysql_fetch_field($res));
+var_dump(mysql_field_seek($res, 2));
+var_dump(mysql_fetch_field($res));
+
+mysql_free_result($res);
+
+var_dump(mysql_field_seek($res, 0));
+
+mysql_close($link);
+print "done!";
?>
--EXPECTF--
Warning: mysql_field_seek(): Field -1 is invalid for MySQL result index %d in %s on line %d