PHP class and object-oriented

Source: Internet
Author: User
The difference between classes and objects in PHP programming: Classes are abstract and represent a class of things. The object is a specific instance of the class. A class is an object template, and an object is an entity instance of a class. Target instance & amp; lt ;? Php is a class (dog class) classdog {attribute public $ name; public $ age; public $ color;} differences between classes and objects in www. jbxue... PHP programming:
Classes are abstract and represent a class of things.
The object is a specific instance of the class.
A class is an object template, and an object is an entity instance of a class.
Object-Oriented instances

 Name = ""; $ dog1-> age = 3; $ dog 1-> color = "white"; $ dog2 = new Cat (); $ dog2-> name = "Xiaohua"; $ dog2-> age = 100; $ dog2-> color = "color"; // if we find a dog, if $ dog1 is found, all related attributes of this variable can be found through $ findDogName = "Wangcai"; if ($ dog2-> name ==$ findDogName) {echo $ dog2-> name. "| ". $ dog2-> age. "| ". $ dog2-> color ;}?>

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.