<slide>
<title>Modifying documents</title>

<example><![CDATA[<?php
$m = new MongoClient;
$c = $m->demo->presentations;
$c->remove();

$c->insert( [
  '_id' => 'mongo-tut-zendcon12',
  'name' => 'Hands-On MongoDB'
] );

$c->update(
  [ 'name' => 'Hands-On MongoDB' ], // criteria
  [ '$set' => [ 'lastviewed' => time() ] ] // modifiers
);

/* document is now:
[
  '_id' => 'mongo-tut-zendcon12',
  'name' => 'Hands-On MongoDB'
  'lastviewed' => 1350296073,
] */
?>]]></example>
</slide>
