Difference between revisions of "JUtility::dump"
From Joomla! Documentation
m (→User contributed notes: moving preparation) |
m (preparing for archive only) |
||
(2 intermediate revisions by the same user 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 function dump ( | public static function dump ( | ||
Line 37: | Line 35: | ||
===See also=== | ===See also=== | ||
* {{JVer|11.1}} '''JUtility::dump source code''' on [[jplatform:utilities/utility.php#cl-160|BitBucket]] | * {{JVer|11.1}} '''JUtility::dump source code''' on [[jplatform:utilities/utility.php#cl-160|BitBucket]] | ||
− | * {{JVer|11.1}} Class [[JUtility | + | * {{JVer|11.1}} Class [[API17:JUtility|JUtility]] |
− | * {{JVer|11.1}} Subpackage [[Subpackage_Utilities | + | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Utilities|Utilities]] |
− | * [[JUtility::dump|Other versions of JUtility::dump]] | + | * [[API17:JUtility::dump|Other versions of JUtility::dump]] |
− | + | ||
− | + | ||
− | |||
− | |||
===User contributed notes=== | ===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=* |
Latest revision as of 22: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]