MongoDB\BSON\MinKey::__construct

(mongodb >=1.0.0)

MongoDB\BSON\MinKey::__constructConstruct a new MinKey

Beschreibung

finalpublicMongoDB\BSON\MinKey::__construct()

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Fehler/Exceptions

Beispiele

Beispiel #1 MongoDB\BSON\MinKey::__construct() example

<?php

var_dump
(new MongoDB\BSON\MinKey());

?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

object(MongoDB\BSON\MinKey)#1 (0) { }

Siehe auch

To Top