get_class_vars --
Returns an array of default properties of the class
Syntax
array get_class_vars ( string class_name )
This function will return an associative array of default public
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; private $var4; // PHP 5
// constructor function myclass() { // change some properties $this->var1 = "foo"; $this->var2 = "bar"; return true; }
get class vars php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php get class vars syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.