2021-10-30 01:06:04 +05:00
|
|
|
<?php
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2021-10-30 01:06:04 +05:00
|
|
|
if (!function_exists('str_starts_with')) {
|
|
|
|
function str_starts_with($haystack, $needle)
|
|
|
|
{
|
|
|
|
return (string)$needle !== '' && strncmp($haystack, $needle, strlen($needle)) === 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!function_exists('str_ends_with')) {
|
|
|
|
function str_ends_with($haystack, $needle)
|
|
|
|
{
|
|
|
|
return $needle !== '' && substr($haystack, -strlen($needle)) === (string)$needle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!function_exists('str_contains')) {
|
|
|
|
function str_contains($haystack, $needle)
|
|
|
|
{
|
|
|
|
return $needle !== '' && mb_strpos($haystack, $needle) !== false;
|
|
|
|
}
|
|
|
|
}
|
2023-09-24 23:07:43 +02:00
|
|
|
|
|
|
|
if (!function_exists('array_is_list')) {
|
|
|
|
function array_is_list(array $arr)
|
|
|
|
{
|
|
|
|
if ($arr === []) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return array_keys($arr) === range(0, count($arr) - 1);
|
|
|
|
}
|
|
|
|
}
|