PHP Object-oriented programming, such as constant usage examples _php tips

Source: Internet
Author: User
Tags php programming

Class constants are a very important concept in PHP object-oriented programming, and mastering class constants can help further improve the level of object-oriented programming in PHP. This paper describes the usage of class constants in PHP programming in the form of an instance. Specifically as follows:

class constants: In a class, save unchanged data in the running cycle .

Defined:

const keyword
const constant name = constant value

Examples are as follows:

Class Student
{public
$stu _id;
Public $stu _name;
Public $stu _gender;
Const gender_male= ' male ';
Const Gender_female = ' female ';
}

Class constants are not restricted by access-qualified modifiers
access Method:
class:: Constant name

Examples are as follows:

Class Student
{public
$stu _id;
Public $stu _name;
Public $stu _gender;
Const gender_male= ' male ';
Const Gender_female = ' female ';
Public function __construct ($id, $name, $gender = ')
{
$this->stu_id= $id;
$this->stu_name= $name;
$this->gender= ($gender = = ") Self::gender_male: $gender;
}
}

Summary: the members that can be defined in a class are constants, static properties, Non-static properties, static methods, and Non-static methods .

Here you need to note:
$this represents the current object, does he always represent the object of $this's class?
The answer is NO! Because the value of the $this does not depend on the class in which the $this resides, it depends on the execution object (execution Environment) when the method is invoked $this.

The execution environment of the method, the current method is executed in the context of which object, and the $this in the method represents which object.

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.