array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'mongodb-bson-timestamp.gettimestamp.php', 1 => 'MongoDB\\BSON\\Timestamp::getTimestamp', 2 => 'Returns the timestamp component of this Timestamp', ), 'up' => array ( 0 => 'class.mongodb-bson-timestamp.php', 1 => 'MongoDB\\BSON\\Timestamp', ), 'prev' => array ( 0 => 'mongodb-bson-timestamp.getincrement.php', 1 => 'MongoDB\\BSON\\Timestamp::getIncrement', ), 'next' => array ( 0 => 'mongodb-bson-timestamp.jsonserialize.php', 1 => 'MongoDB\\BSON\\Timestamp::jsonSerialize', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mongodb/bson/timestamp/gettimestamp.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(mongodb >=1.3.0)
MongoDB\BSON\Timestamp::getTimestamp — Returns the timestamp component of this Timestamp
The timestamp component of a Timestamp is its most significant 32 bits, which denotes the number of seconds since the Unix epoch. This value is read as an unsigned 32-bit integer with big-endian byte order.
Зауваження: Через те, що у PHP цілочисельний тип є знаковим, деякі значення, що повертає цей метод, можуть стати від'ємними на 32-бітних платформах. Для подання беззнакового десяткового значення як рядка, використовується функція sprintf() зі специфікатором
"%u".
У цієї функції немає параметрів.
Returns the timestamp component of this Timestamp.
On 32-bit systems this method may return a negative number. Although the increment and timestamp parts of the BSON timestamp type consists of two unsigned 32-bit values, PHP can not represent these on 32-bit platforms.