选择语言 :

 Module_OOP_ORM_Finder_REST::parse_api_post_data

解析用于POST、PUT提交数据的数据

null Module_OOP_ORM_Finder_REST::parse_api_post_data( [ string $query = null ] )

参数列表

参数 类型 描述 默认值
$query string $query null
File: ./modules/oop/orm/finder/rest.class.php
protected function parse_api_post_data($query = null)
{
    if ($query)
    {
        if (is_array($query))
        {
            return http_build_query($query, '', '&');
        }
        else
        {
            return $query;
        }
    }
    else
    {
        return http_build_query($this->arguments, '', '&');
    }
}