MongoDB PHP: Nasıl bir JSON beslemesi ile Objectıd alabilirim?

0 Cevap php

Ben GridFS yoluyla bir dosyayı saklamak ve böylece gibi id saklıyorum:

$file_id = $gridfs->storeUpload('texture');
$item = array(
    'name'=>$_POST['name'],
    'description'=>$_POST['description'],
    'price'=>$_POST['price'],
    'categories'=>$category_array,
    'tags'=>$tag_array,
    'file'=>$file_id
 );
 $collection->insert($item);

and through terminal and doing find() "file" returns: ObjectId("4cbe9afe460890b774110000")

? Ben JSON besleme oluşturmak için bu yaparsanız benim uygulama "dosya" boş olduğu için bu yüzden bilgi geri alabilirsiniz ... bu yüzden:

foreach($cursor as $item){
            $return[$i] = array(
                'name'=>$item['name'],
                'description'=>$item['description'],
                'file'=>$item['file']
            );
            $i++;
        }
        echo json_encode($return);

Ben yapabilirim neden garip bir şey, benim için, bir:

foreach($cursor as $item){
echo $item['file'];
}

ve Tho geri almak?

Oh, ve burada yem verir budur:

[{"name":"Tea Stained Paper 1","description":"Grungy paper texture stained with tea and coffee.","file":{}},{"name":"Worn Metal 1","description":"A grooved, worn old metal texture","file":{}}]

0 Cevap