mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
16 lines
263 B
PHP
16 lines
263 B
PHP
--TEST--
|
|
Unserialize GMP instance with internal reference to itself
|
|
--EXTENSIONS--
|
|
gmp
|
|
--FILE--
|
|
<?php
|
|
$s = 'C:3:"GMP":23:{s:1:"2";a:1:{i:46;R:1;}}';
|
|
var_dump(unserialize($s));
|
|
?>
|
|
--EXPECT--
|
|
object(GMP)#1 (2) {
|
|
[46]=>
|
|
*RECURSION*
|
|
["num"]=>
|
|
string(1) "2"
|
|
}
|