选择语言 :

 Core_HttpIO::POST

获取$_POST数据

null Core_HttpIO::POST( [ string $key = null , string $type = null ] )

参数列表

参数 类型 描述 默认值
$key string $key null
$type string 返回类型,false或不传,则返回原始数据 例:HttpIO::PARAM_TYPE_URL null
File: ./core/classes/httpio.class.php
public static function POST($key = null, $type = null)
{
    return HttpIO::_get_format_data('_POST', $key, $type);
}