php 重要函数归集
Posted yuf_ricky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 重要函数归集相关的知识,希望对你有一定的参考价值。
1、json_encode 与 json_decode
json_encode 把数组转化成字符串 json_encode(array)
json_decode 把目标字符串转成数组json_decode(string,true),如果省略第二个参数,那么生成的是个对象
<?php header(‘Content-type:text/html;charset=utf8‘); $arr = [ ‘a‘ => ‘first‘, ‘b‘ => ‘second‘, ‘c‘ => ‘third‘, ‘d‘ => ‘fourth‘, ‘f‘ => ‘fifth‘, ‘e‘ => ‘sixth‘ ]; $str = json_encode($arr); var_dump($str); //输出 string(75) "{"a":"first","b":"second","c":"third","d":"fourth","f":"fifth","e":"sixth"}" var_dump(json_decode($str,true)); //输出 array(6) { ["a"]=> string(5) "first" ["b"]=> string(6) "second" ["c"]=> string(5) "third" ["d"]=> string(6) "fourth" ["f"]=> string(5) "fifth" ["e"]=> string(5) "sixth" } //注意如果省略第二个参数,那么输出的是一个对象 ?>
以上是关于php 重要函数归集的主要内容,如果未能解决你的问题,请参考以下文章
用于 WordPress 的 PHP 片段,用于获取所有产品子类别