API16

API16:JException/getProperties

From Joomla! Documentation

Description

Returns an associative array of object properties


<! removed transcluded page call, red link never existed >

Syntax

getProperties($public=true)
Parameter Name Default Value Description
$public true $public If true, returns only the public properties

Returns

array

Defined in

libraries/joomla/error/exception.php

Importing

jimport( 'joomla.error.exception' );

Source Body

public function getProperties($public = true)
{
        $vars  = get_object_vars($this);
        if ($public)
        {
                foreach ($vars as $key => $value)
                {
                        if ('_' == substr($key, 0, 1)) {
                                unset($vars[$key]);
                        }
                }
        }
        return $vars;
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples