Skip to content

Instantly share code, notes, and snippets.

@WoZ
Created October 17, 2012 11:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WoZ/3904980 to your computer and use it in GitHub Desktop.
Save WoZ/3904980 to your computer and use it in GitHub Desktop.
PHP driver of MongoDB: test
<?php
$c = new Mongo();
$db = $c->demo;
$db->bugs->drop();
var_dump(PHP_INT_MAX);
$db->demo->bugs->insert(array('foo' => PHP_INT_MAX));
$db->demo->bugs->findOne();
//$db->bugs->drop();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment