在使用PHP进行读取Mongo数据时,如果读取的int数据过大时,会自动转变为int64位。
并会报以下错误:
Cannot natively represent the long 8331412483000 on this platform
只要在需要的地方添加代码:
ini_set(‘mongo.long_as_object‘, 1);
时间: 2024-10-11 18:03:58
在使用PHP进行读取Mongo数据时,如果读取的int数据过大时,会自动转变为int64位。
并会报以下错误:
Cannot natively represent the long 8331412483000 on this platform
只要在需要的地方添加代码:
ini_set(‘mongo.long_as_object‘, 1);