Why use Get

Source: Internet
Author: User
Class xx{
Private $GG = 30;
function __get ($cute) {
return $this $cute;
}
function __set ($n, $val) {
$this $n = $val;
}
}
$xxx =new xx ();
Echo $xxx->gg;
?>

Really want to get $gg ... You set the $GG to public, and you're done?


Reply to discussion (solution)

Yes, I also think it is superfluous. But the practical usefulness of __get,__set () is far from what this simple code can say.
Again, the Magic method simply makes the call easier.

Almost all high-level languages provide access and Assign methods for class properties, which are used to perform some pre-set actions when accessing class properties, such as validating, calculating
PHP also provides an exception to the __get and __set methods corresponding to the

Read to $gg, write control

  • 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.