<?php
$mongoDB = new Mongo();
$newDB = $mongoDB->newDB;
$newCollection = $newDB->newCollection;
$doc = array('name' => 'owner', 'text' => 'this is test');
$newCollection->insert($doc);
$mongoDB->close();
?>
쉘에 들어가서 다음을 입력하면 확인가능하다.
>db.newCollection.find()
'Server-Side > PHP' 카테고리의 다른 글
[PHP] how to install memcached on Windows XP (0) | 2010.10.14 |
---|---|
[PHP] 정규식으로 한글 영어 숫자 추출하기 (1) | 2010.10.12 |
FirePHP 사용법 (0) | 2010.07.20 |
post raw data (0) | 2010.07.20 |
PHP 이미지 crop (0) | 2010.07.02 |