Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 9369

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>Counting Documents in A Collection</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mongo.tutorial.insert.multiple.html">Adding Multiple Documents</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mongo.tutorial.cursor.html">Using a Cursor to Get All of the Documents</a></div>
 <div class="up"><a href="mongo.tutorial.html">Tutorial</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="mongo.tutorial.counting" class="section">
   <h2 class="title">Counting Documents in A Collection</h2>
   <p class="para">
    Now that we&#039;ve inserted 101 documents (the 100 we did in the loop, plus the
    first one), we can check to see if we have them all using the
     <span class="function"><a href="mongocollection.count.html" class="function">MongoCollection::count()</a></span> method.
    <div class="example" id="mongo.tutorial.counting-example">
     <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />$connection&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">MongoClient</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">$collection&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">$connection</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">database</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">collectionName</span><span style="color: #007700">;<br /><br />echo&nbsp;</span><span style="color: #0000BB">$collection</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">count</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</code></div>
     </div>

    </div>
    and it should print 101.
   </p>
  </div><hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="mongo.tutorial.insert.multiple.html">Adding Multiple Documents</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="mongo.tutorial.cursor.html">Using a Cursor to Get All of the Documents</a></div>
 <div class="up"><a href="mongo.tutorial.html">Tutorial</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>