当前位置: 编程技术>php
php sybase_fetch_array使用方法
来源: 互联网 发布时间:2014-08-26
本文导语: 返回数组资料。语法: array sybase_fetch_array(int result);返回值: 数组函数种类: 数据库功能内容说明 本函数用来将查询结果 result 拆到数组变量中。若 result 没有资料,则返回 false 值。而本函数可以说是 sybase_fetch_row() 的加强函数,...
返回数组资料。
语法: array sybase_fetch_array(int result);
返回值: 数组
函数种类: 数据库功能
内容说明
本函数用来将查询结果 result 拆到数组变量中。若 result 没有资料,则返回 false 值。而本函数可以说是 sybase_fetch_row() 的加强函数,除可以将返回列及数字索引放入数组之外,还可以将文字索引放入数组中。
使用范例
这是 joey@samaritan.com (22-Feb-1999) 所提出的例子
实例1:
代码如下:
返回资料如下
$op[0] => 2164
$op[computed] => 2164
实例2:
代码如下:
The above example would produce the following output (assuming the two tables only have each one column called "person_id"):
代码如下:
array(4) {
[0]=>
int(1)
["person_id"]=>
int(1)
[1]=>
int(1)
["person_id1"]=>
int(1)
}