php unserialize 返回false的解决方法

php 提供serialize(序列化) 与unserialize(反序列化)方法。

使用serialize序列化后,再使用unserialize反序列化就可以获取原来的数据。(改表结构或者进行下面操作)

[php] view plaincopy

  1. <?php
  2. $arr = array(
  3. ‘name‘ => ‘fdipzone‘,
  4. ‘gender‘ => ‘male‘
  5. );
  6. $str = serialize($arr); //序列化
  7. echo ‘serialize str:‘.$str."\r\n\r\n";
  8. $content = unserialize($str); // 反序列化
  9. echo "unserialize str:\r\n";
  10. var_dump($content);
  11. ?>

输出:

[plain] view plaincopy

  1. serialize str:a:2:{s:4:"name";s:8:"fdipzone";s:6:"gender";s:4:"male";}
  2. unserialize str:
  3. array(2) {
  4. ["name"]=>
  5. string(8) "fdipzone"
  6. ["gender"]=>
  7. string(4) "male"
  8. }

但下面这个例子反序列化会返回false

[php] view plaincopy

  1. <?php
  2. $str = ‘a:9:
    {s:4:"time";i:1405306402;s:4:"name";s:6:"新
    晨";s:5:"url";s:1:"-";s:4:"word";s:1:"-";s:5:"rpage";s:29:"http://www.baidu.com
    /test.html";s:5:"cpage";s:1:"-";s:2:"ip";s:15:"117.151.180.150";s:7:"ip_city";s:31:"
    中国北京市 北京市移动";s:4:"miao";s:1:"5";}‘;
  3. var_dump(unserialize($str)); // bool(false)
  4. ?>

检查序列化后的字符串,发现出问题是在两处地方

s:5:"url"

s:29:"http://www.baidu.com/test.html"

这两处应为

s:3:"url"

s:30:"http://www.baidu.com/test.html"

出现这种问题的原因是序列化数据时的编码与反序列化时的编码不一致导致,例如数据库是latin1和UTF-8字符长度不一样。

另外有可能出问题的还有单双引号,ascii字符"\0"被解析为 ‘\0‘,\0在C中是字符串的结束符等于chr(0),错误解析后算了2个字符。

\r在计算长度时也会出问题。

解决方法如下:

[php] view plaincopy

  1. // utf8
  2. function mb_unserialize($serial_str) {
  3. $serial_str= preg_replace(‘!s:(\d+):"(.*?)";!se‘, "‘s:‘.strlen(‘$2‘).‘:\"$2\";‘", $serial_str );
  4. $serial_str= str_replace("\r", "", $serial_str);
  5. return unserialize($serial_str);
  6. }
  7. // ascii
  8. function asc_unserialize($serial_str) {
  9. $serial_str = preg_replace(‘!s:(\d+):"(.*?)";!se‘, ‘"s:".strlen("$2").":\"$2\";"‘, $serial_str );
  10. $serial_str= str_replace("\r", "", $serial_str);
  11. return unserialize($serial_str);
  12. }

例子:

[php] view plaincopy

  1. echo ‘<meta http-equiv="content-type" content="text/html; charset=utf-8">‘;
  2. // utf8
  3. function mb_unserialize($serial_str) {
  4. $serial_str= preg_replace(‘!s:(\d+):"(.*?)";!se‘, "‘s:‘.strlen(‘$2‘).‘:\"$2\";‘", $serial_str );
  5. $serial_str= str_replace("\r", "", $serial_str);
  6. return unserialize($serial_str);
  7. }
  8. $str = ‘a:9:
    {s:4:"time";i:1405306402;s:4:"name";s:6:"新
    晨";s:5:"url";s:1:"-";s:4:"word";s:1:"-";s:5:"rpage";s:29:"http://www.baidu.com
    /test.html";s:5:"cpage";s:1:"-";s:2:"ip";s:15:"117.151.180.150";s:7:"ip_city";s:31:"
    中国北京市 北京市移动";s:4:"miao";s:1:"5";}‘;
  9. var_dump(unserialize($str));    // false
  10. var_dump(mb_unserialize($str)); // 正确

使用处理过单双引号,过滤\r的mb_unserialize方法就能成功反序列化了。

[plain] view plaincopy

    1. 使用unserialize
    2. bool(false)
    3. 使用mb_unserialize
    4. array(9) {
    5. ["time"]=>
    6. int(1405306402)
    7. ["name"]=>
    8. string(6) "新晨"
    9. ["url"]=>
    10. string(1) "-"
    11. ["word"]=>
    12. string(1) "-"
    13. ["rpage"]=>
    14. string(30) "http://www.baidu.com/test.html"
    15. ["cpage"]=>
    16. string(1) "-"
    17. ["ip"]=>
    18. string(15) "117.151.180.150"
    19. ["ip_city"]=>
    20. string(31) "中国北京市 北京市移动"
    21. ["miao"]=>
    22. string(1) "5"
    23. }
时间: 2024-11-02 23:40:48

php unserialize 返回false的解决方法的相关文章

android在view.requestFocus(0)返回false的解决办法

我们有时候想让listview的第一行自动获取到焦点,我们就会使用view.requestFocus(0)来操作,而有时候并不生效,debug后显示rerurn为false. 这是因为我们获取焦点太早,listview控件还为加载完毕.可以尝试一下方法解决: listview.post(new Runnable(){ @Override public void run(){ view.requestFocus(0); } }); ok,问题解决! android在view.requestFocu

Windows中openProcess函数返回ERROR_ACCESS_DENIED的解决方法

辛辛苦苦开始了创业,好不容易见到了天使投资人,如何去打动明星投资人?如何能拿到那一笔"救命"钱?看徐小平.雷军这样说. 1. 天使投资人偏爱投什么样的创业者? 雷军:你有强烈的渴望做成一件伟大的事情,并且能让投资者相信你能做得成这件事情.掏自己的钱创业是创业成功率最高的一种,因为在那一瞬间你重视了,你花的每一分钱都是自己的血汗钱和别人的血汗钱,不会轻松把别的投资人的钱打水漂. 曾李青:我们体系内投了好几家公司,发现我们投资成功的公司要么是有做大公司的成功经验,要么是名校毕业.好学校不一

Type.GetType()在跨程序集反射时返回null的解决方法

在开发中,经常会遇到这种情况,在程序集A.dll中需要反射程序集B.dll中的类型.如果使用稍有不慎,就会产生运行时错误.例如使用Type.GetType("BNameSpace.ClassName")在程序集A.dll获取程序集B.dll中的类型,就会返回Null. 关于跨程序集的反射,有两点需要注意: 1.如果使用typeof,编译能通过,则跨程序集的反射一定可以正常运行.可以说,typeof是支持强类型的.比如 1 Type supType = typeof(BNameSpace

实际iOS编程中遇到的自定义导航栏按钮,导致手势返回失效的解决方法

1\在实际编程过程中往往需要自定义导航栏上面的按钮,也就用: - (instancetype)initWithCustomView:(UIView *)customView; 但用了这个方法后可能会导致iOS7,8的手势返回失效,解决方法就是在自定义的导航栏的viewDidLoad方法中添加如下代码 注意:只有用系统的导航栏,或者继承于系统的导航栏才可以用Push方法,并且自带返回手势. - (void)viewDidLoad { [super viewDidLoad]; __weak type

ios7自定义返回按钮后,右滑返回功能失效解决方法

-(void)viewWillAppear:(BOOL)animated{ [super viewWillAppear:animated]; //开启ios右滑返回 if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) { self.navigationController.interactivePopGestureRecognizer.delegate = n

前端控制台返回406错误解决方法

问题描述: 406 Not Acceptable,message:description The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers ()错误.(说是指定的资源已经找到,但它的MIME类型和客户在Accpet头中所指定

Type.GetType()反射另外项目中的类时返回null的解决方法

项目1:ProjectA namespace ProjectA { public class paa { .... } } Type.GetType("paa")返回null Type.GetType("ProjectA.paa")返回正确 项目2:ProjectB 引用了ProjectA Type.GetType("ProjectA.paa")返回空值 Type.GetType("ProjectA.paa,ProjectA"

mysql执行load_fle返回NULL的解决方法

mysql 版本: 5.7.18 问题: 在执行mysql 函数load_file时,该函数将加载指定文件的内容,存储至相应字段.如: SELECT LOAD_FILE("D:\aa.txt"); 但是执行时总是返回为空.各种斜线都尝试了. 经过查阅资料得:https://segmentfault.com/a/1190000009333563 mysql 新版本下secure-file-priv字段 : secure-file-priv参数是用来限制LOAD DATA, SELECT

asp.net mvc 跨域 get正常 post有问题 OPTIONS 返回404 完美解决方法 【小白篇】

global.asax.cs文件中  增加 private void Application_BeginRequest(object sender, EventArgs e) { if (HttpContext.Current.Request.HttpMethod == "OPTIONS") { //HttpContext.Current.Response.StatusCode = 200; HttpContext.Current.Response.End(); } } 如下图 web