Files
mongo-php-driver/tests/bson/bson-dbpointer-serialization-002.phpt
Jeremy Mikola bd10948415 PHPC-1849: Handle deprecation of Serializable in PHP 8.1 (#1246)
* Add __serialize and __unserialize methods to Serializable classes

These methods will be used on PHP 7.4+ when available. Implementing them is required to suppress a deprecation notice on PHP 8.1+.

This commit also renames is_debug parameter for get_properties_hash utility functions (and related macros) to more accurately reflect its purpose of allocating a new HashTable instead of using an internal props table.

* Explicitly handle serialize output in php_phongo_cursorid_get_properties_hash

* Explicitly handle serialize output in php_phongo_writeconcern_get_properties_hash

* Note maxStalenessSeconds handling in php_phongo_readpreference_get_properties_hash

* CursorId should always serialize id as string
2021-08-31 22:13:11 -04:00

35 lines
898 B
PHP

--TEST--
MongoDB\BSON\DBPointer serialization (__serialize and __unserialize)
--SKIPIF--
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
<?php skip_if_php_version('<', '7.4.0'); ?>
--FILE--
<?php
$test = MongoDB\BSON\toPHP(MongoDB\BSON\fromJSON('{ "dbref": {"$dbPointer": {"$ref": "phongo.test", "$id" : { "$oid" : "5a2e78accd485d55b4050000" } }} }'))->dbref;
var_dump($test);
var_dump($s = serialize($test));
var_dump(unserialize($s));
echo "\n";
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
object(MongoDB\BSON\DBPointer)#1 (2) {
["ref"]=>
string(11) "phongo.test"
["id"]=>
string(24) "5a2e78accd485d55b4050000"
}
string(104) "O:22:"MongoDB\BSON\DBPointer":2:{s:3:"ref";s:11:"phongo.test";s:2:"id";s:24:"5a2e78accd485d55b4050000";}"
object(MongoDB\BSON\DBPointer)#2 (2) {
["ref"]=>
string(11) "phongo.test"
["id"]=>
string(24) "5a2e78accd485d55b4050000"
}
===DONE===