JApplication/stringURLSafe
From Joomla! Documentation
< API15:JApplication
The "API15" 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]
This method transliterates a string into an URL safe string or returns a URL safe UTF-8 string based on the global configuration
<! removed transcluded page call, red link never existed >
Syntax[edit]
static stringURLSafe($string)
Parameter Name | Default Value | Description |
---|---|---|
$string | $input String to process |
Returns[edit]
string Processed string
Defined in[edit]
libraries/joomla/application/application.php
Importing[edit]
jimport( 'joomla.application.application' );
Source Body[edit]
static public function stringURLSafe($string)
{
$app = &JFactory::getApplication();
if (self::getCfg('unicodeslugs') == 1)
{
$output = JFilterOutput::stringURLUnicodeSlug($string);
} else {
$output = JFilterOutput::stringURLSafe($string);
}
return $output;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]