HH\Lib\Str\replace_ci

Meta Engineer?

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

Returns the "haystack" string with all occurrences of $needle replaced by $replacement (case-insensitive)

namespace HH\Lib\Str;

function replace_ci(
  string $haystack,
  string $needle,
  string $replacement,
): string;

Guide

Parameters

  • string $haystack
  • string $needle
  • string $replacement

Returns

  • string

Examples

$result = Str\replace_ci("example_string", "string", "replacement");
echo($result);
//result: example_replacement

$result = Str\replace_ci("example_string", "STRING", "replacement");
echo($result);
//result: example_replacement

$result = Str\replace_ci("example_string", "uncontained", "replacement");
echo($result);
//result: example_string