API15:JString/strrev
From Joomla! Documentation
Contents |
Description
UTF-8 aware alternative to strrev Reverse a string
Syntax
strrev($str)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | String to be reversed |
Returns
string The string in reverse character order
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
function strrev($str) { jimport('phputf8.strrev'); return utf8_strrev($str); }
[Edit See Also] SeeAlso:JString/strrev