pe/component-form-data

表单数据组件允许解析非POST请求的原始表单数据体

v1.0.0 2017-12-06 10:26 UTC

This package is auto-updated.

Last update: 2024-09-05 20:05:30 UTC


README

此组件允许解析非POST请求的原始表单数据体

安装

php composer.phar require pe/component-form-data:1.0.0

使用

// Parse data
$data = new FormData(
    $_SERVER['CONTENT_TYPE'],
    file_get_contents('php://input')
);

// Get $_FILES compatible array
$data->getFILES()

// Get $_POST compatible array
$data->getPOST()