windwalker/io
Composer 安装命令:
composer require windwalker/io
包简介
Windwalker IO package
关键字:
README 文档
README
Windwalker IO package is an input & output handler to get request or send output to user terminal.
This package is heavily based on Joomla Input but has modified a lot, please see original concept of Joomla Wiki.
Installation via Composer
Add this to the require block in your composer.json.
{
"require": {
"windwalker/io": "~3.0"
}
}
Web Input
Mostly, we will need to get request data from http, the $_GET, $_POST or $_REQUEST provides us these data.
But it is very unsafe if we only use super global variables, the Input object can help us get values from these variables and clean every string.
use Windwalker\IO\Input; $input = new Input; $input->get('flower'); // Same as $_REQUEST['flower'] $input->set('flower', 'sakura');
The second argument is default value if request params not exists
$input->get('flower', 'default');
Filter
Input use Windwalker Filter package to clean request string, the default filter type is CMD.
We can use other filter type:
// mysite.com/?flower=<p>to be, or not to be.</p>; $input->get('flower'); // tobeornottobe (Default cmd filter) $input->get('flower', 'default_value', InputFilter::STRING); // to be, or not to be $input->getString('flower'); // to be, or not to be (Same as above, using magic method) $input->getRaw('flower') // <p>to be, or not to be.</p>
More filter usage please see: Windwalker Filter
Compact and Get Array
Get data as an array.
// mysite.com/?flower[1]=sakura&flower[2]=olive; $input->getArray('flower'); // Array( [1] => sakura [2] => olive) // Get array and filter every values $input->getArray('flower', null, '.', 'int');
Use compact() method
// mysite.com/?flower=sakura&foo=bar&king=Richard // Get all request $input->compact(); // To retrieve values you want $array( 'flower' => '', 'king' => '', ); $input->compact($array); // Array( [flower] => sakura [king] => Richard) // Specify different filters for each of the inputs: $array( 'flower' => InputFilter::CMD, 'king' => InputFilter::STRING, ); // Use nested array to get more complicated hierarchies of values $input->compact(array( 'windwalker' => array( 'title' => InputFilter::STRING, 'quantity' => InputFilter::INTEGER, 'state' => 'integer' // Same as above ) ));
Get And Set Multi-Level
If we want to get value of foo[bar][baz], just use get('foo.bar.baz'):
$value = $input->get('foo.bar.baz', 'default', InputFilter::STRING); $input->set('foo.bar.baz', $data); // Use custom separator $input->get('foo/bar/baz', 'default', [filter], '/'); $input->set('foo/bar/baz', $data, '/');
Get Value From Other Methods
We can get other methods as a new input object.
$post = $input->post; $value = $post->get('foo', 'bar'); // Other inputs $get = $input->get; $put = $input->put; $delete = $input->delete;
Get SUPER GLOBALS
$env = $input->env; $session = $input->session; $cookie = $input->cookie; $server = $input->server; $server->get('REMOTE_ADDR'); // Same as $_SERVER['REMOTE_ADDR'];
See: SUPER GLOBALS
Get method of current request:
$method = $input->getMethod();
Json Input
If you send a request with json body or content-type: application/json, you can use $input->json to
get JsonInput and parse json values.
Files Input
The format that PHP returns file data in for arrays can at times be awkward, especially when dealing with arrays of files. FilesInput provides a convenient interface for making life a little easier, grouping the data by file.
Suppose you have a form like:
<form action="..." enctype="multipart/form-data" method="post"> <input type="file" name="flower[test][]" /> <input type="file" name="flower[test][]" /> <input type="submit" value="submit" /> </form>
Normally, PHP would put these in an array called $_FILES that looked like:
Array
(
[flower] => Array
(
[name] => Array
(
[test] => Array
(
[0] => youtube_icon.png
[1] => Younger_Son_2.jpg
)
)
[type] => Array
(
[test] => Array
(
[0] => image/png
[1] => image/jpeg
)
)
[tmp_name] => Array
(
[test] => Array
(
[0] => /tmp/phpXoIpSD
[1] => /tmp/phpWDE7ye
)
)
[error] => Array
(
[test] => Array
(
[0] => 0
[1] => 0
)
)
[size] => Array
(
[test] => Array
(
[0] => 34409
[1] => 99529
)
)
)
)
FilesInput produces a result that is cleaner and easier to work with:
$files = $input->files->get('flower');
$files then becomes:
Array
(
[test] => Array
(
[0] => Array
(
[name] => youtube_icon.png
[type] => image/png
[tmp_name] => /tmp/phpXoIpSD
[error] => 0
[size] => 34409
)
[1] => Array
(
[name] => Younger_Son_2.jpg
[type] => image/jpeg
[tmp_name] => /tmp/phpWDE7ye
[error] => 0
[size] => 99529
)
)
)
CLI Input & Output
Please see Cli README
windwalker/io 适用场景与选型建议
windwalker/io 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15.67k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2014 年 09 月 09 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「io」 「windwalker」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 windwalker/io 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 windwalker/io 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 windwalker/io 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Windwalker Queue package
Windwalker Promise package
Windwalker Validator package
Windwalker Middleware package
Yet another PHP static site generator.
统计信息
- 总下载量: 15.67k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 8
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: LGPL-2.0-or-later
- 更新时间: 2014-09-09