Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 13, 2018 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/91d852153c567cba3f011ea8a7b95978 to your computer and use it in GitHub Desktop.
Save parzibyte/91d852153c567cba3f011ea8a7b95978 to your computer and use it in GitHub Desktop.
<?php
$baseDeDatos = obtenerBaseDeDatos();
$coleccion = $baseDeDatos->contactos;
$resultado = $coleccion->deleteOne(
// El criterio, algo así como where
["_id" => new MongoDB\BSON\ObjectId($id)]
);
$eliminados = $resultado->getDeletedCount();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment