2017-07-20 01:49:41 +00:00
|
|
|
<?php
|
2017-09-15 04:02:31 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!function_exists('is_digit')) {
|
2017-09-15 04:02:31 +00:00
|
|
|
/**
|
|
|
|
* Deal with normal (and irritating) PHP behavior to determine if
|
|
|
|
* a value is a non-float positive integer.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
function is_digit(mixed $value): bool
|
2017-09-15 04:02:31 +00:00
|
|
|
{
|
2022-10-14 16:59:20 +00:00
|
|
|
return !is_bool($value) && ctype_digit(strval($value));
|
2017-09-15 04:02:31 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-05 04:42:04 +00:00
|
|
|
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!function_exists('object_get_strict')) {
|
2017-10-05 04:42:04 +00:00
|
|
|
/**
|
|
|
|
* Get an object using dot notation. An object key with a value of null is still considered valid
|
|
|
|
* and will not trigger the response of a default value (unlike object_get).
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
function object_get_strict(object $object, ?string $key, $default = null): mixed
|
2017-10-05 04:42:04 +00:00
|
|
|
{
|
|
|
|
if (is_null($key) || trim($key) == '') {
|
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (explode('.', $key) as $segment) {
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!is_object($object) || !property_exists($object, $segment)) {
|
2017-10-05 04:42:04 +00:00
|
|
|
return value($default);
|
|
|
|
}
|
|
|
|
|
|
|
|
$object = $object->{$segment};
|
|
|
|
}
|
|
|
|
|
|
|
|
return $object;
|
|
|
|
}
|
|
|
|
}
|