Home  >  Article  >  Backend Development  >  怎么将php的cookie转化成对象或数组?

怎么将php的cookie转化成对象或数组?

WBOY
WBOYOriginal
2016-06-23 14:04:241319browse

怎么将php的cookie转化成对象或数组?


<?php    echo $_COOKIE['drres'];    /* -------        得到这样的字符串"{\"filter_last\":\"category\",\"user_last\":\"linjuming@xx.com\"}"        怎么转化成数组或对象啊?    ------- */?>


回复讨论(解决方案)


print_r(json_decode("{\"filter_last\":\"category\",\"user_last\":\"linjuming@xx.com\"}"));

?>

php.ini中,magic_quotes_gpc = on

改成magic_quotes_gpc = off

就没转义符了

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