Alternative usage of classes-data encapsulation-PHP Tutorial

Source: Internet
Author: User
An alternative usage of class-data encapsulation. Alternative usage of classes-data encapsulation generally, if classname: property is used, the class attributes cannot be accessed, but classname: method () can be used () use the class method. Alternative usage of the same class-data encapsulation
Generally, if you use classname: property, you cannot access the attributes of the class, but you can use classname: method () to use the class method. Similarly, you cannot use objectname-> property to access the variables in the class method. With this feature, we can save some data in the class, a bit like the private property of c ++.
Class data {
Function value ($ var ){
Static $ d = array ();
If (func_num_args ()> 1 ){
$ D [$ var] = func_get_arg (1 );
} Else {
Return $ d [$ var];
}
}
}
// Test:
Data: value ("a", 1 );
Data: value ("B", 2 );
Echo data: value ("");
Echo data: value ("B ");
?>

In general, if you use classname: property, you cannot access the class attributes, but you can use classname: method () to use the class method. The same...

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.