我用过
$collection = $db->mpres_seq ;
$document = array(
"id" => new MongoInt64(1),
"last_executed" => new MongoDate(strtotime("2012-04-01 04:00:00")),
"last_message" => ""
);
$收藏 - >插入($文件);
此代码用于插入时间戳数据。现在我想把它拿回来。我想在mysql中使用相同类型(和格式)的Unix_Timestamp(last_executed)
。我怎样才能做到这一点?
> db.mpres_seq.find().pretty()
{
"_id" : ObjectId("528a3a2af7bde99408000080"),
"id" : NumberLong(1),
"last_executed" : ISODate("2012-04-01T02:00:00Z"),
"last_message" : ""
}
这是一个示例结果。
答案 0 :(得分:0)