PHP class constants using the detailed _php tips

Source: Internet
Author: User
Tags constant modifier php class
Note: Unlike other object-oriented programming languages, in PHP, a class cannot use the final modifier on an attribute variable.
If you want to declare a property as a constant, you can use the Const keyword, and you do not need to use the dollar sign as a variable name prefix, nor do you need to use the access permission modifier. A constant means that although the variable can be accessed, the value of the variable cannot be modified. For example, the following code declares a constant property Con_var:
Copy Code code as follows:

<?php
Class foo{
Const Con_var= "The value of a constant property cannot be modified <br/>";
Public Function method_a () {
Echo (Self::con_var);
}
}
Echo (Foo::con_var);
$myFoo =new Foo ();
Echo ($myFoo->method_a ());
?>

Constant properties cannot use object access, only class access, and within the class ontology you can use "self:: constant name" to use "class name:: Constant Name" Outside the class ontology.

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.