HH\Lib\Str\strip_suffix_l

Meta Engineer?

This is available as Str\strip_suffix_l in the www repository.

Returns the string with the given suffix removed, or the string itself if it doesn't end with the suffix

namespace HH\Lib\Str;

function strip_suffix_l(
  \HH\Lib\Locale\Locale $locale,
  string $string,
  string $suffix,
): string;

Strings will be normalized for comparison in encodings that support multiple representations, such as UTF-8.

Guide

Parameters

  • \HH\Lib\Locale\Locale $locale
  • string $string
  • string $suffix

Returns

  • string