JUtility/dump: Difference between revisions
From Joomla! Documentation
New page: ===Description===
Method to dump the structure of a variable for debugging purposes
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JUtility/dump|Edi... |
No edit summary |
||
Line 17: | Line 17: | ||
!Description | !Description | ||
|- | |- | ||
| | | &$var | ||
| | | | ||
| A variable | | A variable |
Revision as of 10:19, 30 March 2010
Description
Method to dump the structure of a variable for debugging purposes
Template:Description:JUtility/dump
Syntax
dump(&$var, $htmlSafe=true)
Parameter Name | Default Value | Description |
---|---|---|
&$var | A variable | |
$htmlSafe | true | True to ensure all characters are htmlsafe |
Returns
string
Defined in
libraries/joomla/utilities/utility.php
Importing
jimport( 'joomla.utilities.utility' );
Source Body
function dump(&$var, $htmlSafe = true)
{
$result = var_export($var, true);
return '<pre>'.($htmlSafe ? htmlspecialchars($result, ENT_COMPAT, 'UTF-8') : $result).'</pre>';
}
[Edit See Also] Template:SeeAlso:JUtility/dump
Examples
<CodeExamplesForm />