|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-06-24 12:12 UTC] cox at idecnet dot com
[2002-06-24 13:16 UTC] cox at idecnet dot com
[2002-06-25 07:01 UTC] sander@php.net
[2002-10-10 11:55 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 02:00:01 2025 UTC |
file: bug_serialize <?php error_reporting(E_ALL); $ser = 'a:5:{s:6:"lineas";a:1:{i:0;a:7:{s:7:"ldivisa";s:3:"eur";s:9:"letcambio";s:1:"1";s:9:"leimporte";s:3:"200";s:7:"letotal";s:3:"200";s:9:"ldtcambio";s:1:"1";s:9:"ldimporte";s:2:"50";s:7:"ldtotal";s:2:"50";}}s:3:"lte";i:200;s:3:"ltd";i:50;s:10:"ltgtosefec";d:93,66;s:3:"lrl";d:56,34;}'; var_dump(unserialize($ser)); ?> With PHP 4.1.1 array(5) { ["lineas"]=> array(1) { [0]=> array(7) { ["ldivisa"]=> string(3) "eur" ["letcambio"]=> string(1) "1" ["leimporte"]=> string(3) "200" ["letotal"]=> string(3) "200" ["ldtcambio"]=> string(1) "1" ["ldimporte"]=> string(2) "50" ["ldtotal"]=> string(2) "50" } } ["lte"]=> int(200) ["ltd"]=> int(50) ["ltgtosefec"]=> float(93) ["lrl"]=> float(56) } With PHP 4.2.1 Notice: unserialize() failed at offset 253 of 280 bytes in bug_serialize on line 4 bool(false) Tomas V.V.Cox