好的,我正在使用 Mongodb,我有以下代码
$image = $chnl->getElementsByTagName("image");
foreach($image as $img){
$imgs = $img->getElementsByTagName("url");
$image = $imgs->item(0)->nodeValue;
print $image;
$collection = $fetch->db->shows;
$collection->update(
array( "_id"=> new MongoId($d["_id"])),
array( '$set' => array("image"=>$image) )
);
}
它正在打印图像 URL,但是当我尝试将其添加到 mongodb buy $set 时,它会将 null 插入到数据库中。