函数:mssql_fetch_object() |
mssql_fetch_object返回类资料。 语法: object mssql_fetch_object(int result); 返回值: 类 函数种类: 数据库功能
本函数用来将查询结果 result 拆到类变量中。使用方法和 mssql_fetch_array() 几乎相同,不同的地方在于本函数返回资料是类而不是数组。若 result 没有资料,则返回 false 值。另外治募?米⒁獾牡胤绞牵?取回的类资料的索引只能是文字而不能用数字,这是因为类的特性。类资料的特性中所有的属性 (property) 名称都不能是数字,因此只好乖乖使用文字字符串当索引了。关于速度方面,本函数的处理速度几乎和 mssql_fetch_array() 及 mssql_fetch_row() 二函数差不多,要用哪个函数还是看使用的需求决定。
mssql_fetch_array() mssql_fetch_row() 整理: (www.phpernote.com)
|