0
我正嘗試將圖像上傳到現有文檔(通過添加一個字段)。我正在通過電子郵件輸入查找我的文檔。 這裏是我的代碼: -如何添加一個字段到MongoDB文檔使用PHP?
<?php
$errors = array();
$data = array();
$_POST = json_decode(file_get_contents('php://input'), true);
$name=$__POST["mn"];
$email=$__POST["me"];
$i2u=$_POST["image2upload"];
$binary = base64_decode($i2u);
$filepath = 'images/newuploads/'.$name.'/'.$name.'.jpg';
$imgurl = 'http://localhost/portfolio3/php/'.$filepath;
file_put_contents($filepath, $binary);
$m = new MongoClient();
$db = $m->mydb2->mycol2;
$foundRecord = $db->find(array('Email'=>$email));
$foundRecord->update(array(‘$set’ => array(‘uploadpic1’ => new MongoBinData(file_get_contents($imgurl)))));
?>
如何使用PHP多一個字段添加到MongoDB的文件?
謝謝。有用。! –