Dutch PHP Conference 2025 - Call For Papers

MongoDB\BSON\Document::toPHP

(No version information available, might only be in Git)

MongoDB\BSON\Document::toPHPReturns the PHP representation of the BSON document

Опис

final public MongoDB\BSON\Document::toPHP(?array $typeMap = null): array|object

Unserializes the BSON document to its PHP representation. The typeMap paramater may be used to control the PHP types used for converting BSON arrays and documents (both root and embedded).

Увага

Технічно, BSON-документи можуть містити повторювані ключі, оскільки зберігаються, як списки пар ключ-значення. Однак програми не повинні створювати документи із дублікатами ключів, бо поведінка сервера та драйвера може бути невизначеною. Також дані можуть бути пошкоджені під час декодування BSON-документа, бо в PHP об'єкти не можуть містити повторювані назви властивостей, а масиви — дубльовані ключі.

Параметри

typeMap (array)

Налаштування мапи типів.

Значення, що повертаються

The decoded PHP value.

Зауваження: When encountering a value encoded as 64-bit integer in the BSON document, the return value of this method will be a MongoDB\BSON\Int64 instance.

Помилки/виключення

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top