{"id":180,"date":"2018-10-31T18:44:20","date_gmt":"2018-10-31T10:44:20","guid":{"rendered":"https:\/\/wp.dj47.top\/?p=180"},"modified":"2021-10-20T16:19:02","modified_gmt":"2021-10-20T08:19:02","slug":"php%e7%ae%80%e5%8d%95-%e5%af%b9%e8%b1%a1object-%e4%b8%8e-%e6%95%b0%e7%bb%84array-%e7%9a%84%e8%bd%ac%e6%8d%a2","status":"publish","type":"post","link":"https:\/\/www.djlog.cn\/?p=180","title":{"rendered":"PHP\u7b80\u5355 \u5bf9\u8c61(object) \u4e0e \u6570\u7ec4(array) \u7684\u8f6c\u6362"},"content":{"rendered":"<pre class=\"language-php\"><code>\/**\r\n * \u6570\u7ec4 \u8f6c \u5bf9\u8c61\r\n * @param array $arr \u6570\u7ec4\r\n * @return object\r\n *\/\r\nfunction array_to_object($arr) {\r\n\tif (gettype($arr) != 'array') {\r\n\t\treturn;\r\n\t}\r\n\tforeach ($arr as $k =&gt; $v) {\r\n\t\tif (gettype($v) == 'array' || getType($v) == 'object') {\r\n\t\t\t$arr[$k] = (object)array_to_object($v);\r\n\t\t}\r\n\t}\r\n\treturn (object)$arr;\r\n}\r\n\/**\r\n * \u5bf9\u8c61 \u8f6c \u6570\u7ec4\r\n * @param object $obj \u5bf9\u8c61\r\n * @return array\r\n *\/\r\nfunction object_to_array($obj) {\r\n\t$obj = (array)$obj;\r\n\tforeach ($obj as $k =&gt; $v) {\r\n\t\tif (gettype($v) == 'resource') {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tif (gettype($v) == 'object' || gettype($v) == 'array') {\r\n\t\t\t$obj[$k] = (array)object_to_array($v);\r\n\t\t}\r\n\t}\r\n\treturn $obj;\r\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\/** * \u6570\u7ec4 \u8f6c \u5bf9\u8c61 * @param array $arr \u6570\u7ec4 * @return object * [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[4],"tags":[],"class_list":["post-180","post","type-post","status-publish","format-standard","hentry","category-php"],"_links":{"self":[{"href":"https:\/\/www.djlog.cn\/index.php?rest_route=\/wp\/v2\/posts\/180","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.djlog.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.djlog.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.djlog.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.djlog.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=180"}],"version-history":[{"count":0,"href":"https:\/\/www.djlog.cn\/index.php?rest_route=\/wp\/v2\/posts\/180\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.djlog.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=180"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.djlog.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=180"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.djlog.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=180"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}