多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
1. mysql\_fetch\_row() 从结果集中取出一行数据作为枚举数组返回(下标从0开始的) 语法:array mysql\_fetch\_row(resource $result); $result是结果集变量 1. mysql\_fetch\_array() 从结果集中取出一行数据作为混合数组返回 语法: array mysql\_fetch\_array(resource $result\[,int $result\_type\]) 参数:$result是结果集变量 $result\_type:是指返回的数组类型.取值mysql\_both, mysql\_assoc, mysql\_num mysql\_both:默认也就是2种都有 mysql\_assoc:只有字符下标的数组,相当于mysql\_fetch\_assoc()的功能 mysql\_num: 只有数字下标的数组,相当于mysql\_fetch\_row()的功能 1. mysql\_fetch\_assoc() 从结果集中取出一行数据作为关联数组返回(下标是字符) 语法:array mysql\_fetch\_assoc(resource $result); $result是结果集变量 mysql\_data\_seek(result, row\_number):移动mysql指针