Files
panel-pelican-dev/app/helpers.php

43 lines
1.1 KiB
PHP
Raw Normal View History

<?php
2017-09-14 23:02:31 -05:00
2021-01-23 12:33:34 -08:00
if (!function_exists('is_digit')) {
2017-09-14 23:02:31 -05:00
/**
* Deal with normal (and irritating) PHP behavior to determine if
* a value is a non-float positive integer.
*/
function is_digit(mixed $value): bool
2017-09-14 23:02:31 -05:00
{
return !is_bool($value) && ctype_digit(strval($value));
2017-09-14 23:02:31 -05:00
}
}
2017-10-04 23:42:04 -05:00
2024-03-25 10:26:57 -04:00
if (!function_exists('is_ip')) {
function is_ip(?string $address): bool
{
return $address !== null && filter_var($address, FILTER_VALIDATE_IP) !== false;
}
}
2021-01-23 12:33:34 -08:00
if (!function_exists('object_get_strict')) {
2017-10-04 23:42:04 -05: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).
*/
2024-03-17 13:49:14 -04:00
function object_get_strict(object $object, ?string $key, mixed $default = null): mixed
2017-10-04 23:42:04 -05:00
{
if (is_null($key) || trim($key) == '') {
return $object;
}
foreach (explode('.', $key) as $segment) {
2021-01-23 12:33:34 -08:00
if (!is_object($object) || !property_exists($object, $segment)) {
2017-10-04 23:42:04 -05:00
return value($default);
}
$object = $object->{$segment};
}
return $object;
}
}