这行代码高深莫测,哪位高手能看懂

WBOY
Release: 2016-06-13 13:40:16
Original
743 people have browsed it

这行代码高深莫测,谁能看懂?
phpwind数据库的job表中,有个reward字段,保存的字符串似乎是一种json格式,但我没见过这种格式,请问怎么用,有何优点?
似乎是任务执行后的规则配置,代码如下:

a:4:{s:4:"type";s:5:"money";s:3:"num";s:2:"10";s:8:"category";s:6:"credit";s:11:"information";s:17:"可获得 铜币 ";}

------解决方案--------------------
序列化后的。存储方便。
------解决方案--------------------
这是 php 序列化后的串,用 serialize 函数生成的
可用 unserialize 函数还原

示例的数据是一个用4个元素的关联数组,肯定是不能直接放在数据库中的
序列化的作用就是将复杂的数据结构转换成简单的字符串,这样就便于保存了
------解决方案--------------------

正解,用unserialize可以还原

探讨

序列化后的。存储方便。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template