标签:echo for mod cli tps class bar user https
php连接mysql我有文章已经写过了,这篇文章主要是介绍从mysql中查询出结果之后怎么输出的问题。
一:mysqli_fetch_row();
查询结果:array([0]=>小王)
查询:
二:mysqli_fetch_assos();
查询结果:array([name]=>小王)
查询:
三、mysqli_fetch_array();
查询结果:array([0]=>小王 [name]=>小王)
查询:
四、fetch_array();
查询结果:array([0]=>小王 [name]=>小王)
查询:
从上面可以看出不同的函数输出的格式也是不一样的,mysqli_fetch_row()返回的是以数字做索引的,mysqli_fetch_assos()是以关键字做索引的,而mysqli_fetch_array()和fetch_array()即使用数字也使用关键字做索引。
标签:echo for mod cli tps class bar user https
原文地址:http://www.cnblogs.com/soundcode/p/6928961.html