API16

JString/strrev

From Joomla! Documentation

< API16:JString

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

UTF-8 aware alternative to strrev Reverse a string



Syntax[edit]

static strrev($str)
Parameter Name Default Value Description
$str String to be reversed

Returns[edit]

string The string in reverse character order

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

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



Examples[edit]

Code Examples[edit]