API16

API16:JString/strrev

From Joomla! Documentation

Description

UTF-8 aware alternative to strrev Reverse a string



Syntax

static 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

public static function strrev($str)
{
        jimport('phputf8.strrev');
        return utf8_strrev($str);
}



Examples

Code Examples