PHP - Manual: MongoDB\BSON\Binary::getType
2024-11-14
(mongodb >=1.0.0)
MongoDB\BSON\Binary::getType — Returns the Binary's type
此函数没有参数。
Returns the Binary's type.
示例 #1 MongoDB\BSON\Binary::getType() example
<?php
$binary = new MongoDB\BSON\Binary('foo', MongoDB\BSON\Binary::TYPE_GENERIC);
var_dump($binary->getType());
?>
以上例程会输出:
int(0)
官方地址:https://www.php.net/manual/en/mongodb-bson-binary.gettype.php