PHP Traversal Object Properties Two ways

Source: Internet
Author: User
Keywords Web Programming PHP Tutorials
Tags .net application class get_object_vars net php php tutorial programming

PHP Tutorial Traversal object Properties Two ways
/*
In this article we will provide you with two types of traversal object property methods, and illustrate the traversal object properties in PHP application.
*/
class Foo {
Private $a;
public $b = 1;
Public $c;
Private $d;
Static $e;

Public Function test () {
Var_dump (Get_object_vars ($this));
}
}

$test = new Foo;
Var_dump (Get_object_vars ($test));

$test->test ();


Method Two
class Foo {
Private $a;
public $b = 1;
Public $c = ' 111cn.net ';
Private $d;
Static $e;

Public Function test () {
Var_dump (Get_object_vars ($this));
}
}

$test = new Foo;
Var_dump (Get_object_vars ($test));

$test->test ();

The results are as follows:
Array (2) {
["B"]=>
Int (1)
["C"]=>
111cn.net
}
Array (4) {
["A"]=>
NULL
["B"]=>
Int (1)
["C"]=>
111cn.net
["D"]=>
NULL
}

/*
It's easy to see the results above to traverse object properties.
*/

?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.