http-php/headers
Composer 安装命令:
composer require http-php/headers
包简介
A simple OOP wrapper to work with HTTP headers in PHP
README 文档
README
This package is to allow you to create HTTP Headers in PHP, in a simple and reliable way.
Installation
composer require http-php/headers
Usage
To use this package, it is very simple. Create a header using the following code:
use HttpPHP\Headers\Header; $header = Header::make( key: 'User-Agent', value: 'My-Awesome-Package', ); $header->toHeader(); // ['User-Agent' => 'My-Awesome-Package'];
The package currently supports the following header value types:
- String
- Integer
- Float
- Boolean (although these will return 1 and 0)
- Arrays (these will return json encoded strings)
- Closures
It is important to note that if you pass a closure, that it must return something that can be cast to a string using strval.
Testing
To run the test suite:
composer run test
Credits
LICENSE
The MIT LIcense (MIT). Please see License File for more information.
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-25