查找作者为Numberlong的帖子

时间:2013-12-27 18:52:02

标签: php mongodb

我想查询作者是数字长度格式的帖子(整数64位) 但我不知道如何使用PHP驱动程序 它适用于小整数(32位)这里是我正在使用的范围数组:

$rangeQuery=array('author'=>intval($tmp->info['user']));
$fields=array('title' => true, 'type' => true,'subtype' => true, 'active' => true);
$rows = $markers->find($rangeQuery,$fields);

但它没有返回作者是64位整数的作者

1 个答案:

答案 0 :(得分:-1)

sql选项是CHAR_LENGTH(),因为我读过一些以前的... 这是原始来源的链接。

MySQL - How to select data by string length