Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public function removepopup($id){
  2. $collection = $this->connect()->deleteOne(['_id' => new MongoDBBSONObjectID( $id )]);
  3. }
  4.  
  5. public function removepopup($id){
  6. $collection = $this->connect()->deleteOne(['_id' => new MongoDBBSONObjectID( $id )]);
  7. if($collection->getDeletedCount() == 0){
  8. //No se ha eliminado ninguna fila
  9. return false;
  10. }
  11. return true;
  12. }
Add Comment
Please, Sign In to add comment