mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
37 lines
552 B
PHP
37 lines
552 B
PHP
--TEST--
|
|
Bug #73091 (Unserializing DateInterval object may lead to __toString invocation)
|
|
--FILE--
|
|
<?php
|
|
class foo {
|
|
function __toString() {
|
|
var_dump(0);
|
|
return 'may be a bug';
|
|
}
|
|
}
|
|
|
|
var_dump(unserialize('O:12:"DateInterval":1:{s:4:"days";O:3:"foo":0:{}}'));
|
|
?>
|
|
--EXPECTF--
|
|
object(DateInterval)#%d (%d) {
|
|
["y"]=>
|
|
int(-1)
|
|
["m"]=>
|
|
int(-1)
|
|
["d"]=>
|
|
int(-1)
|
|
["h"]=>
|
|
int(-1)
|
|
["i"]=>
|
|
int(-1)
|
|
["s"]=>
|
|
int(-1)
|
|
["f"]=>
|
|
float(0)
|
|
["invert"]=>
|
|
int(0)
|
|
["days"]=>
|
|
int(-1)
|
|
["from_string"]=>
|
|
bool(false)
|
|
}
|