“startswith () i endswith () w PHP” Kod odpowiedzi

String PHP zaczyna się od

//php check if first four characters of a string = http
substr( $http, 0, 4 ) === "http";
//php check if first five characters of a string = https
substr( $https, 0, 5 ) === "https";
Vic20

startswith () i endswith () w PHP

function startsWith($haystack, $needle)
{
     $length = strlen($needle);
     return (substr($haystack, 0, $length) === $needle);
}

function endsWith($haystack, $needle)
{
    $length = strlen($needle);
    if ($length == 0) {
        return true;
    }

    return (substr($haystack, -$length) === $needle);
}
Matteoweb

Odpowiedzi podobne do “startswith () i endswith () w PHP”

Pytania podobne do “startswith () i endswith () w PHP”

Więcej pokrewnych odpowiedzi na “startswith () i endswith () w PHP” w PHP

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu