GetNumericType::getNumericType()
Not yet in a tagged release
Description
GetNumericType::getNumericType() returns integer or double if the input variable is a numeric type, or can be automatically coerced into a numeric type by PHP.
use GanbaroDigital\MissingBits\TypeInspectors\GetNumericType;
public string|null GetNumericType::getNumericType(mixed $item);
Parameters
The input parameters are:
mixed $item- the item to examine
Return Value
GetNumericType::getNumericType() returns a string on success, or NULL otherwise.
- If
$itemis not numeric,NULLis returned. - If
$itemis already anintegeror adouble, we returnintegerordoubleaccordingly. - if
$itemis a string, we convert it to a number, and returnintegerordoubleaccordingly.
GetNumericType::getNumericType() relies on PHP's is_numeric(). is_numeric() behaves differently in PHP 5.x and PHP 7.0.
Example Return Values
Here's a list of examples of accepted input values:
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(0.0));
// outputs
//
// string(6) "double"
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(0));
// outputs
//
// string(7) "integer"
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("0.0"));
// outputs
//
// string(6) "double"
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("3.1415927"));
// outputs
//
// string(6) "double"
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("0"));
// outputs
//
// string(7) "integer"
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("100"));
// outputs
//
// string(7) "integer"
Here's a list of examples of ingored input values:
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(null));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType([1,2,3]));
// outputs
//
// NULL
use GanbaroDigital\MissingBits\TypeInspectors\GetStrictTypes;
$inspector = new GetNumericType;
var_dump($inspector->getNumericType([GetStrictTypes::class, "from"]));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(function(){}));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(true));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(false));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(new ArrayObject));
// outputs
//
// NULL
use GanbaroDigital\MissingBits\TypeInspectors\GetStrictTypes;
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(new GetStrictTypes));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType((object)[]));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(STDIN));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("true"));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("false"));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType("hello, world!"));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(ArrayObject::class));
// outputs
//
// NULL
$inspector = new GetNumericType;
var_dump($inspector->getNumericType(Traversable::class));
// outputs
//
// NULL
Throws
GetNumericType::getNumericType() does not throw any exceptions.
Works With
GetNumericType::getNumericType() is supported on these versions of PHP:
| PHP Version | Works? |
|---|---|
| 5.5 | Yes |
| 5.6 | Yes |
| 7.0 | Yes |
| HHVM | Yes |