# inputs **Repository Path**: tianyunchong/inputs ## Basic Information - **Project Name**: inputs - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-01 - **Last Updated**: 2021-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # readme 参数接收,示例入下: ```php use Tyz\Inputs\Input; $input = new Input(); //单个参数接收 $input->intVar("age", "age1", "33", true); $input->arrayVar("info", "info", false, false, [function($data){return json_decode($data, true);}]); //批量接收 $input->typeVarMulti("string", ["name" => "name1", "label" => "label2"], ""); //parsed解析 $data = []; $input->parsed($data, $this->request->getQueryParams()); ```