PHP : Check if a string ends with a substring

In this tutorial learn how to Check if a string ends with a substring in php using stripos() and strlen() methods.

function str_ends_with(string $string, string $substr): bool
{
    return stripos($string, $substr) === strlen($string) - strlen($substr);
}



TUTORIAL

<?php

/**
 * Check if a string ends with a substring
 *
 * @param string $string
 * @param string $substr
 * @return bool
 */
function str_ends_with(string $string, string $substr): bool
{
    return stripos($string, $substr) === strlen($string) - strlen($substr);
}

var_dump( str_ends_with("This is test!", "test!"));
OUTPUT  DEMO

bool(true)

No comments:

Post a Comment

how to call ssh from vs code

 To call SSH from VS Code, you can use the built-in Remote Development extension. This extension allows you to open a remote folder or works...