www.DNameTrade.com - the domain names for everybody: ".com", ".net", ".org" and ".info" - $11/year, ".us" and ".biz" - $10/year, ".ws" - $16/year. Also, the domain names ".cc", ".tv", ".be", ".jp" and more... Special Domain Names Transfer Pricing...
           
  Affordable Business Hosting

CPanel Login


Support
FAQ
Forums
HelpDesk
E-mail
Docs
Statistics
Network
Goodies
Free Trial!
Custom Plan!
Useful Links


 

get_class_vars

(PHP 4 )

get_class_vars --  Returns an array of default properties of the class

Description

array get_class_vars ( string class_name)

This function will return an associative array of default properties of the class. The resulting array elements are in the form of varname => value.

Note: Prior to PHP 4.2.0, Uninitialized class variables will not be reported by get_class_vars().

Example 1. get_class_vars() example

<?php

class myclass {

    var
$var1; // this has no default value...
    
var $var2 = "xyz";
    var
$var3 = 100;
    
    
// constructor
    
function myclass() {
        
// change some properties
        
$this->var1 = "foo";
        
$this->var2 = "bar";
        return
true;
    }

}

$my_class = new myclass();

$class_vars = get_class_vars(get_class($my_class));

foreach (
$class_vars as $name => $value) {
    echo
"$name : $value\n";
}

?>

Will produce:

// Before PHP 4.2.0 var2 : xyz var3 : 100  // As of PHP 4.2.0 var1 : var2 : xyz var3 : 100

See also get_class_methods(), get_object_vars()



 
  © 2004-2008 Hosting To Business (Hosting2B). Service Line, Inc.
2Checkout.com, Inc. is an authorized retailer of Hosting2B.com