HH\Lib\Str\ends_with
Requires the Hack Standard Library to be installed.
Facebook Engineer?
This function is available as Str\ends_with()
in Facebook's www repository.
Returns whether the string ends with the given suffix
namespace HH\Lib\Str;
function ends_with(
string $string,
string $suffix,
): bool;
For a case-insensitive check, see Str\ends_with_ci()
.
Parameters
string $string
string $suffix
Returns
bool