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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
--TEST--
MongoCursor::__construct() with projection argument and numeric field names
--SKIPIF--
<?php require_once "tests/utils/standalone.inc" ?>
--FILE--
<?php
require_once "tests/utils/server.inc";
$host = MongoShellServer::getStandaloneInfo();
$mc = new MongoClient($host);
$collection = $mc->selectCollection(dbname(), collname(__FILE__));
$collection->drop();
$collection->insert(array('0' => 'zero', '1' => 'one'));
try {
$document = $collection->findOne(array(), array('1' => 1));
var_dump($document);
} catch (MongoException $e) {
var_dump($e->getMessage(), $e->getCode());
}
/* If the $fields array would be indistinguishable from a numeric array, the
* user must either re-order the keys (assuming multiple fields are projected)
* or cast $fields to an object. This work-around is necessary due to legacy
* argument support (i.e. array of field names to be included).
*/
try {
$document = $collection->findOne(array(), array('1' => 1, '0' => 1));
var_dump($document);
} catch (MongoException $e) {
var_dump($e->getMessage(), $e->getCode());
}
try {
$document = $collection->findOne(array(), (object) array('0' => 1, '1' => 1));
var_dump($document);
} catch (MongoException $e) {
var_dump($e->getMessage(), $e->getCode());
}
?>
--EXPECTF--
array(2) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
[1]=>
string(3) "one"
}
array(3) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
[0]=>
string(4) "zero"
[1]=>
string(3) "one"
}
array(3) {
["_id"]=>
object(MongoId)#%d (1) {
["$id"]=>
string(24) "%s"
}
[0]=>
string(4) "zero"
[1]=>
string(3) "one"
}
|