본문 바로가기

IT/PHP

mongoDB에 insert하기 (php)

<?php
$m = new MongoClient('mongodb://localhost');

$db = $m->test;

$collection = $db->gals;

$data = array("gal_url"=>"http://gal.dcinside", "gal_barogagy"=>"스타 갤러리", "gal_name"=>"스타");

$collection->insert($data);

echo $collection->count();
?>


db명은 test


collection명은 gals이다.


count는 현재 데이터 갯수


insert는 했으니 이제 delete와 update를..

'IT > PHP' 카테고리의 다른 글

PHP 배열 함수 정리  (0) 2014.08.13
문자열 공백 제거  (0) 2014.08.13
Ubuntu에서 phpinfo.php 안뜰때  (0) 2014.08.11
CURL 사용법  (0) 2014.08.05
php json_decode  (0) 2014.07.31