diff --git a/functions/strings.xml b/functions/strings.xml index 9f88709fe4..9ef2ebd392 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -3039,6 +3039,14 @@ echo str_repeat("-=", 10); Returns string, reversed. + + Reversing a string with <function>strrev</function> + +<php +echo strrev("Hello world!"); // outputs "!dlrow olleH" +?> + +