PHP Magic methods and Magic variables

Source: Internet
Author: User

PHP Magic methods and Magic variables

Magic Method:

PHP treats all class methods starting with __ (two underscores) as a magic method;

  1. __construct (), construction method;
  2. __destruct (), destructor;
  3. __get (String $name) is called when accessing and setting a member variable that does not exist in the class;
  4. __set (String $name, mixed $value) is called when accessing and setting a member variable that does not exist in the class;

  5. __call (string $name, array $arguments) is called when a method that does not exist in the class is called;

  6. __tostring () is called when the object is converted to string;
  7. __clone (), cloning;

Magic constants:

A constant with two _ starts and ends for the magic constant;

  1. The current line number in the file __line__.
  2. __file__ the full path and filename of the file;
  3. __dir__ the directory where the files are located;
  4. __function__, function name;
  5. __class__, the name of the class;
  6. __method__-class method name;
  7. __NAMESPACE__ the name of the current namespace

PHP Magic methods and Magic variables

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.