1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
--TEST--
Test for PHP-1105: long_as_object = 0 no effect. [2]
--SKIPIF--
<?php require_once "tests/utils/standalone.inc" ?>
--FILE--
<?php
require_once "tests/utils/server.inc";
$host = MongoShellServer::getStandaloneInfo();
$m = new MongoClient($host);
$d = $m->selectDb(dbname());
$c = $m->selectCollection(dbname(), collname(__FILE__));
$c->drop();
$category_name = 'biscuits';
$c->insert(array('ct' => $category_name, 'id' => new MongoInt64("5615")));
ini_set('mongo.long_as_object', 0);
$result = $d->command(array(
"findAndModify" => collname(__FILE__),
"query" => array("ct" => (string)$category_name),
"update" => array('$inc' => array("id" => 1)),
"upsert" => true,
"new" => true
));
var_dump($result['value']['id']);
ini_set('mongo.long_as_object', 1);
$result = $d->command(array(
"findAndModify" => collname(__FILE__),
"query" => array("ct" => (string)$category_name),
"update" => array('$inc' => array("id" => 1)),
"upsert" => true,
"new" => true
));
var_dump($result['value']['id']);
?>
--EXPECTF--
int(5616)
object(MongoInt64)#%d (%d) {
["value"]=>
string(4) "5617"
}
|