... please wait while unserializing php string ... [len: 488]
- Browser (known) compatibily list:
(last check is required, first is not important)
- FireFox 1.0, 1.5 (true, true)
- Opera 8, 8.5 (false, true)
- Safari 2 (true, true)
- KDE 3.5 (true, true)
- Internet Explorer 5, 5.5, 6, 7 beta 2 (true, true)
- Browser (known) un-compatible list:
- Internet Explorer 4
Please contact me if your browser doesn't pass this test page.
[visit
www.3site.it if you don't know my email address]
<?php // PHP used code
class MyClass {
var $pippo = "test";
}
class Object {}
header("Content-type: text/html; charset=UTF-8");
$test1 = utf8_encode(str_repeat('";', 5).'ÎÑTËRÑÅTÌÔñÁL'.str_repeat('";', 5));
$test2 = array();
for($a = 0; $a < 2; $a++)
array_push(
$test2, array(
"class"=>new MyClass(),
1,
.2,
true,
false,
null,
array($test1),
new Object()
)
);
$test2 = serialize($test2);
?>
// then inside script tag ...
// ... serializedString = '<?php echo $test2; ?>', ..