diff options
| author | Ulf Wendel <uw@php.net> | 2007-07-11 15:47:38 +0000 |
|---|---|---|
| committer | Ulf Wendel <uw@php.net> | 2007-07-11 15:47:38 +0000 |
| commit | c1ab1512fdd0f4711e88bd979117e1292de64a4d (patch) | |
| tree | b45f6bc31c0b31549364ac56ed899f30c1d57ab5 /ext/mysql/tests | |
| parent | c8534287794fbd87b0cdd5e808e594abd5f5409d (diff) | |
| download | php-git-c1ab1512fdd0f4711e88bd979117e1292de64a4d.tar.gz | |
Whitespace only
Diffstat (limited to 'ext/mysql/tests')
| -rw-r--r-- | ext/mysql/tests/mysql_list_fields.phpt | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/ext/mysql/tests/mysql_list_fields.phpt b/ext/mysql/tests/mysql_list_fields.phpt index 5dbabf347d..500eb58c45 100644 --- a/ext/mysql/tests/mysql_list_fields.phpt +++ b/ext/mysql/tests/mysql_list_fields.phpt @@ -4,27 +4,26 @@ mysql_list_fields() <?php require_once('skipif.inc'); ?> --FILE-- <?php - include_once "connect.inc"; +include_once "connect.inc"; - $tmp = NULL; - $link = NULL; - - if (false !== ($tmp = @mysql_list_fields($link, $link))) - printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); - - require('table.inc'); - - if (!$res = mysql_list_fields($db, 'test', $link)) - printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link)); - - if (!($num = mysql_num_fields($res))) - printf("[004] Empty field list? [%d] %s\n", mysql_errno($link), mysql_error($link)); +$tmp = NULL; +$link = NULL; - - mysql_free_result($res); - mysql_close($link); - - print "done!\n"; +if (false !== ($tmp = mysql_list_fields($link, $link))) + printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp); + +require('table.inc'); + +if (!$res = mysql_list_fields($db, 'test', $link)) + printf("[003] [%d] %s\n", mysql_errno($link), mysql_error($link)); + +if (!($num = mysql_num_fields($res))) + printf("[004] Empty field list? [%d] %s\n", mysql_errno($link), mysql_error($link)); + +mysql_free_result($res); +mysql_close($link); + +print "done!\n"; ?> --EXPECTF-- -done! +done!
\ No newline at end of file |
