narrowspark / http-message-util
此包已被 废弃 并不再维护。未建议替代包。
此存储库包含用于简化 PSR-7 常见操作的实用类和常量。
v0.3.0
2018-05-08 20:04 UTC
Requires
- php: ^7.1
- ext-mbstring: *
- psr/http-message: ^1.0
Requires (Dev)
- guzzlehttp/psr7: 1.4
- narrowspark/php-cs-fixer-config: ^2.0
- phpstan/phpstan: ^0.9
- phpstan/phpstan-phpunit: ^0.9
- phpstan/phpstan-strict-rules: ^0.9.0
- phpunit/phpunit: ^6.0
Provides
This package is auto-updated.
Last update: 2023-03-26 10:07:45 UTC
README
此存储库包含用于简化 PSR-7 常见操作的实用类和常量。
每个头部类都以特定的 HTTP 头部命名,并具有以下解析和签名功能。
安装
$ composer require narrowspark/http-message-util
使用
以下是一个使用 InteractsWithAcceptLanguage 类的示例
<?php declare(strict_types=1); use Narrowspark\Http\Message\Util\InteractsWithAcceptLanguage; $request = new Request(); $request = $request->withHeader('Accept-Language', 'zh, en-us; q=0.8, en; q=0.6'); return InteractsWithAcceptLanguage::getLanguages($request); // => ['zh', 'en', 'en_US']
以下是一个使用 InteractsWithAuthorization 类的示例
<?php declare(strict_types=1); use Narrowspark\Http\Message\Util\InteractsWithAuthorization; $request = new Request(); $request = $request->withHeader('Authorization', 'Basic QWxhZGRpbjpPcGVuU2VzYW1l'); return InteractsWithAuthorization::getAuthorization($request); // => ['Basic', 'QWxhZGRpbjpPcGVuU2VzYW1l']
以下是一个使用 InteractsWithContentTypes 类的示例
<?php declare(strict_types=1); use Narrowspark\Http\Message\Util\InteractsWithContentTypes; $request = new Request(); $request = $request->withHeader('Content-Type', 'application/json, */*'); return InteractsWithContentTypes::isJson($request); // => true $request = $request->withHeader('X-Pjax', 'true'); return InteractsWithContentTypes::isPjax($request); // => true $request = $request->withHeader('X-Requested-With', 'XMLHttpRequest'); return InteractsWithContentTypes::isAjax($request); // => true
以下是一个使用 HeaderUtils 类的示例
<?php declare(strict_types=1); use Narrowspark\Http\Message\Util\HeaderUtils; return HeaderUtils::split("da, en-gb;q=0.8", ",;"); // => array(array('da'), array('en-gb', 'q=0.8')) or return HeaderUtils::combine(array(array("foo", "abc"), array("bar"))); // => array("foo" => "abc", "bar" => true) or return HeaderUtils::toString(array("foo" => "abc", "bar" => true, "baz" => "a b c"), ","); // => 'foo=abc, bar, baz="a b c"' or return HeaderUtils::quote('foo bar'); // => "foo bar" or return HeaderUtils::unquote('"foo bar"'); // => foo bar
以下是一个使用 InteractsWithDisposition 类的示例
<?php declare(strict_types=1); use Narrowspark\Http\Message\Util\InteractsWithDisposition; $response = InteractsWithDisposition::appendDispositionHeader(new Response(), InteractsWithDisposition::DISPOSITION_ATTACHMENT, 'foo.html'); return $response->getHeaderLine('Content-Disposition'); // => attachment; filename=foo.html or return InteractsWithDisposition::makeDisposition(InteractsWithDisposition::DISPOSITION_ATTACHMENT, 'foo.html'); // => attachment; filename=foo.html
测试
$ vendor/bin/phpunit
贡献
注意:请注意,此项目以贡献者行为准则发布。通过参与此项目,您同意遵守其条款。
许可证
Narrowspark http-emitter 是开源软件,根据 MIT 许可证 发布