API15:JString/strrev
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
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
Examples
<CodeExamplesForm />
