JView/escape
From Joomla! Documentation
< API16:JView
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]
Escapes a value for output in a view script.
Syntax[edit]
escape($var)
Parameter Name | Default Value | Description |
---|---|---|
$var | The output to escape. |
Returns[edit]
mixed The escaped value.
Defined in[edit]
libraries/joomla/application/component/view.php
Importing[edit]
jimport( 'joomla.application.component.view' );
Source Body[edit]
function escape($var)
{
if (in_array($this->_escape, array('htmlspecialchars', 'htmlentities'))) {
return call_user_func($this->_escape, $var, ENT_COMPAT, $this->_charset);
}
return call_user_func($this->_escape, $var);
}
Examples[edit]
Code Examples[edit]