熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

解析將多維數組轉換為支持curl提交的一維數組格式

2022-06-13   來源: PHP編程 
本篇文章是對將多維數組轉換為支持curl提交的一維數組格式實現代碼進行了詳細的分析介紹需要的朋友參考下   復制代碼 代碼如下:

  
/**
     * @desc    多維數組轉化為支持curl提交數組
     * @author    腳本之家   
     */
    public function toPost(array $params = array() $pre = )
    {
        $result = array();
        foreach ($params as $key => $val)
        {
                if (is_array($val))
                {
                    $subPre = ($pre=="") ? $key : $pre "[" $key "]";
                    //$pre = "[" $key "]";
                    $result = array_merge($result toPost($val $subPre));

                }
                else
                {
                    $result[$pre"["$key"]"] = $val;
                }
        }         return $result;
    }


From:http://tw.wingwit.com/Article/program/PHP/201311/21269.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.