Const attributes
The field defined with the const attribute is a constant. Constants in the class are similar to static variables. The difference is that the value of a constant cannot be changed once it is assigned a value.
The const definition constant does not require the $ symbol. Its structure is as follows:
Const constant name // constant name cannot use the $ symbol
Instance:
The code is as follows: |
Copy code |
<? Php Class Date { Const M = "Monday "; } Echo "today is". Date: M; ?> |
Tip: The constant names defined by const are generally capitalized. This is a convention. We need to develop a good naming convention. If the defined constant is composed of multiple words, the underscore _ link is used, which is also a convention. For example, FILE_SIZE.
Protected attributes
The field scope defined by protected is between public and private. If this member is declared as protected (protected), it means that this field can only be used in this class and its subclass.
Instance:
The code is as follows: |
Copy code |
<? Php Class me { Protected $ Money = 100; Protected $ price1 = 60; Public function compute ($ price ){ If ($ this-> price1 <= $ price ){ Echo "Okay, I sold it to you. <Br> "; $ This-> Money = $ this-> Money + $ price; Return "I have a total of". $ this-> Money. "RMB "; } Else { Echo "I don't sell it, $ price is too cheap <br> "; Return "now I am still". $ this-> Money. "RMB "; } } } $ Now = new me; Echo $ now-> timeout (30 ); ?> |