doulong6761 2013-11-21 13:32
浏览 29

尝试反序列化无法正常工作的数据

I am really going crazy at the moment, i have the following serialized, however when i try to unserialized it returns false.

Serialized array:

Array
(
    [0] => a:1:{i:0;s:9:"714443801";}
)

Current Code:

<?php
$votesArray = unserialize($Vzzz);

echo "<pre>";
    print_r($votesArray);
echo "</pre>";

?>

  • 写回答

2条回答 默认 最新

  • douqie3391 2013-11-21 13:37
    关注

    You are not unserializing it: try:

    print_r(unserialize($votesArray[0]))
    
    评论

报告相同问题?