Seven syntax descriptions in PHP

Source: Internet
Author: User

Seven syntax descriptions in PHP
Class Seven syntax descriptions

-Attributes
-Static attributes
-Method
-Static Method
-Class Constants
-Constructor
-Destructor


  ';} // Static method public static function static_stuFunction () {echo 'static _ function ','';} // when the constructor creates an object, it automatically calls public function _ construct ($ stu_name) {$ this-> stu_name = $ stu_name; echo '_ construct ','';} // automatically call public function _ destruct () {echo '_ destruct', '';} when the Destructor destroys an object ','';}} // instantiate Class object $ object = new Student ('Tom '); // echo $ object-> stu_name ,''; // echo $ object: $ stu_num, ''; // class call static attribute echo Student: $ stu_num ,''; // call methods and static methods by using an object. $ object-> stuFunction (); $ object-> static_stuFunction (); $ object: stuFunction (); $ object :: static_stuFunction (); // use classes to call methods and static methods respectively Student: stuFunction (); Student: static_stuFunction (); // class call class constant echo Student: STUDENT, '';
Summary: objects can call attributes and static attributes. classes can only call static attributes. Objects can call methods and static methods. classes can call methods and static methods.

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.