Home  >  Article  >  Backend Development  >  再来俩有意思的有关问题 json_decode 和zend 未知标记

再来俩有意思的有关问题 json_decode 和zend 未知标记

WBOY
WBOYOriginal
2016-06-13 13:00:36887browse

再来俩有意思的问题 json_decode 和zend 未知标记
1,关于json_decode 和 json_encode,
将数组json_encode 后存入cookie ,
取出的时候使用 json_decode 转换为对象
使用一次 json_decode  只能得到字符串
试了下 json_decode (json_decode ($cook1)) 居然得到对象了,
神马情况 ?

2,zend studio 9 中 如何添加 自定义的标记 让编辑器不警告提示,注:请勿回答关闭警告提示,偶想明白怎么添加自定义标记让编辑器不提示 未知标记


------解决方案--------------------
打包前是数组的话   你json_decode 返回值是obj 第二个参数设为true 返回值是array
打包前是字符串的话 你json_decode 返回值就是string 
你第二次json_decode时 检控一下这个string的值 如果是json格式 返回值是obj  是普通string的话 返回值是string

Statement:
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