library http-status-codes-trait
A PHP trait which defines all standard HTTP status codes.
zlik/http-status-codes-trait
A PHP trait which defines all standard HTTP status codes.
- Sunday, November 16, 2014
- by zlik
- Repository
- 1 Watchers
- 2 Stars
- 161 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 2 Versions
- 0 % Grown
HTTP Status Codes Trait
A PHP trait which defines all standard HTTP status codes., (*1)
Installing with Composer
json
"require": {
"zlik/http-status-codes-trait": "1.0"
}, (*2)
Usage
Mix the \Zlik\HttpStatusCodes trait into your class and utilize it's public properties to get HTTP status codes.
For example:, (*3)
class Foo {
use \Zlik\HttpStatusCodes;
}
$foo = new Foo;
echo $foo->HTTP_NOT_FOUND; //outputs '404'
Requirements
PHP 5.4+, (*4)