• PHP JSON文件解析并获取key、value,判断key是否存在


    /******************************************************************************
     *             PHP JSON文件解析并获取key、value,判断key是否存在
     * 说明:
     *     配置文件以JSON格式存放在文件中,key、value都是未知且要被处理的数据。
     *
     *                                         2017-3-14 深圳 南山平山村 曾剑锋
     *****************************************************************************/
    
    一、参考文档:
        1. Getting JSON data with PHP
            http://stackoverflow.com/questions/16578019/getting-json-data-with-php
        2. how to know whether key exists in Json string [duplicate]
            http://stackoverflow.com/questions/10176293/how-to-know-whether-key-exists-in-json-string   
    
    二、操作方法
        1. 获取json的key、value:
            $string  = file_get_contents("jsonFile.json");
            $json_array = json_decode($string,true);
    
            foreach ($json_array as $key => $value){
    
                $store = $key -> store;
                $general_cat = $key -> general_cat;
                $spec_cat = $key -> spec_cat;
    
                if (!is_null($key -> mainImg_select)){
                    $cat = $key -> cat;
                }
    
                echo $headURL;
            }
        2. 判断key是存在的,并且非空:
            1. 处理方法:
                if( isset( $mydata['user_id'] ) ){
                   // do something
                }
            2. array_key_exists、isset这两个函数对值为空的返回值是不一样的。
  • 相关阅读:
    AES块加密与解密
    流加密的密文解密
    Linux命令——压缩和解压缩
    Linux之Vim学习
    Linux命令——磁盘管理
    Linux命令——用户和用户组管理
    Linux命令——文件和目录管理
    C++的技术探究
    Debian系统下实现通过wpa_config连接WPA-PSK加密的Wifi连接
    如何在openWRT系统上实现双版本
  • 原文地址:https://www.cnblogs.com/zengjfgit/p/6550157.html
Copyright © 2020-2023  润新知