API16:JView/escape
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
Escapes a value for output in a view script.
Syntax
escape($var)
| Parameter Name | Default Value | Description |
|---|---|---|
| $var | The output to escape. |
Returns
mixed The escaped value.
Defined in
libraries/joomla/application/component/view.php
Importing
jimport( 'joomla.application.component.view' );
Source Body
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); }
[Edit See Also] SeeAlso:JView/escape
Examples
<CodeExamplesForm />
