mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-26 09:52:07 +01:00
* 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
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
--TEST--
|
|
MongoDB\Driver\CursorId serialization (__serialize and __unserialize)
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
<?php skip_if_php_version('<', '7.4.0'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$tests = [
|
|
unserialize('O:23:"MongoDB\Driver\CursorId":1:{s:2:"id";s:19:"7250031947823432848";}'),
|
|
unserialize('O:23:"MongoDB\Driver\CursorId":1:{s:2:"id";s:1:"0";}'),
|
|
];
|
|
|
|
foreach ($tests as $test) {
|
|
var_dump($test);
|
|
echo $s = serialize($test), "\n";
|
|
var_dump(unserialize($s));
|
|
echo "\n";
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
object(MongoDB\Driver\CursorId)#%d (%d) {
|
|
["id"]=>
|
|
%rint\(7250031947823432848\)|string\(19\) "7250031947823432848"%r
|
|
}
|
|
O:23:"MongoDB\Driver\CursorId":1:{s:2:"id";s:19:"7250031947823432848";}
|
|
object(MongoDB\Driver\CursorId)#%d (%d) {
|
|
["id"]=>
|
|
%rint\(7250031947823432848\)|string\(19\) "7250031947823432848"%r
|
|
}
|
|
|
|
object(MongoDB\Driver\CursorId)#%d (%d) {
|
|
["id"]=>
|
|
int(0)
|
|
}
|
|
O:23:"MongoDB\Driver\CursorId":1:{s:2:"id";s:1:"0";}
|
|
object(MongoDB\Driver\CursorId)#%d (%d) {
|
|
["id"]=>
|
|
int(0)
|
|
}
|
|
|
|
===DONE===
|