在php中更改了mysql field_count还是我错了?

时间:2013-09-17 02:31:30

标签: php mysql

据我记忆,如果返回设置为空。 mysqli_result :: $ field_count始终为0.

但是,在Debian Linux中将php升级到5.4.4-14_deb7u4(cli)(内置:2013年8月23日14:37:41)之后,我发现mysqli_result :: $ field_count总是select语句中的列号。 / p>

<?php
//always return field_count = 2, although 'niuniu' is not in the table;
$sql = "select _id, _id from user_info where name='niuniu'"; 

我看到粉红色的大象吗?

1 个答案:

答案 0 :(得分:0)

您确定要追踪字段数,而不是行数吗?

查看mysqli_num_rows()