HH\Lib\Str\reverse

Meta Engineer?

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

Reverse a string by bytes

namespace HH\Lib\Str;

function reverse(
  string $string,
): string;

Guide

Parameters

  • string $string

Returns

  • string

Examples

$result = Str\reverse("example_string");
echo($result);
//result: "gnirts_elpmaxe"

$result = Str\reverse("Example_string");
echo($result);
//result:"gnirts_elpmaxE"

$result = Str\reverse("");
echo($result);
//result: ""