PHP Simple Traversal Object Example _php tips

Source: Internet
Author: User

This article illustrates the simple way in which PHP iterates through objects. Share to everyone for your reference, specific as follows:

objects can be traversed by using foreach, which can only traverse properties and the access-scoped

<?php
class bee{public
  $a = 1;
  protected $b = 2;
  Private $c = 3;
}
$obj = new Bee ();
foreach ($obj as $key => $val) {
  echo $key. '-'. $val;
}

The results of the operation are as follows:

A-1

More about PHP Interested readers can view the site topics: "PHP object-oriented Program Design Primer", "PHP common traversal algorithm and skills summary", "PHP Array" Operation Techniques Encyclopedia, "PHP string (String) Usage Summary", " Introduction to PHP Basic grammar, "PHP operation and operator Usage Summary", "PHP Network Programming Skills Summary", "Php+mysql database operation Introductory Course" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design.

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.