函式:MongoDB\BSON\TimestampInterface::getIncrement()
適用版本:MongoDB 1.2.0+
用法:這個函式用於獲取MongoDB\BSON\TimestampInterface物件的增量值。
示例:
<?php
// 建立一個MongoDB\BSON\TimestampInterface物件
$timestamp = new MongoDB\BSON\Timestamp(12345, 6);
// 獲取增量值
$increment = $timestamp->getIncrement();
echo "Increment: " . $increment . PHP_EOL;
?>
在這個示例中,我們首先建立了一個MongoDB\BSON\TimestampInterface物件,引數分別為秒數和增量值。然後,我們使用getIncrement()函式獲取增量值,並將其列印出來。
輸出:
Increment: 6
這個示例中的增量值為6。
熱門工具排行榜