PHP type names
PHP type names
π
Description
Simple library containing the list of constants for the available PHP data types. Use those constant types in your project when you need to mention a data type, use those constants instead of hardcoding them.
βοΈ
Requirements
- PHP 7.3 or newer.
βοΈ
Installation
Install it easily with Composer
composer require ph-7/datatype
π€
Example
require_once __DIR__ . '/vendor/autoload.php';
use PH7\Datatype\Type;
$id = settype($_GET['id'], Type::STRING);
$name = settype($inputName, Type::STRING);
π
Who cooked it?
Pierre-Henry Soria, a highly passionate, zen & pragmatic software engineer
βοΈ
License
PHP type names is generously distributed under the MIT.