Difference between revisions of "JUtility::dump"
From Joomla! Documentation
(Layout updates) |
m (preparing for archive only) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
Method to dump the structure of a variable for debugging purposes. | Method to dump the structure of a variable for debugging purposes. | ||
− | + | ||
− | + | ||
− | |||
− | |||
− | |||
− | |||
− | |||
<source lang="php"> | <source lang="php"> | ||
− | public static | + | public static function dump ( |
+ | &$var | ||
+ | $htmlSafe=true | ||
+ | ) | ||
</source> | </source> | ||
{| class="wikitable" | {| class="wikitable" | ||
Line 32: | Line 30: | ||
|- | |- | ||
|} | |} | ||
− | + | * '''Returns''' string | |
− | string | + | * '''Defined''' on line 168 of libraries/joomla/utilities/utility.php |
− | + | * '''Since''' {{JVer|11.1 }} | |
− | libraries/joomla/utilities/utility.php | ||
− | * | ||
− | |||
===See also=== | ===See also=== | ||
− | + | * {{JVer|11.1}} '''JUtility::dump source code''' on [[jplatform:utilities/utility.php#cl-160|BitBucket]] | |
− | + | * {{JVer|11.1}} Class [[API17:JUtility|JUtility]] | |
− | + | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] | |
− | * | + | * [[API17:JUtility::dump|Other versions of JUtility::dump]] |
− | * [[JUtility::dump|Other versions of | + | |
− | + | ||
− | ===Examples=== | + | ===User contributed notes=== |
− | + | === Code Examples === | |
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JUtility::dump | category=JUtility::dump | ||
− | + | namespace=CodeExample | |
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
+ | namespace=CodeExample | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
− | <noinclude>[[Category: | + | <noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude> |
Latest revision as of 21:56, 24 March 2017
The "API17" 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.
JUtility::dump[edit]
Description[edit]
Method to dump the structure of a variable for debugging purposes.
public static function dump (
&$var
$htmlSafe=true
)
Parameter | Type | Default | Description |
---|---|---|---|
&$var | mixed | $var A variable | |
$htmlSafe | boolean | true | True to ensure all characters are htmlsafe |
See also[edit]
JUtility::dump source code on BitBucket
Class JUtility
Subpackage Utilities
- Other versions of JUtility::dump
User contributed notes[edit]
Code Examples[edit]