PHP can call non-static methods through the class name

Source: Internet
Author: User

Today, there is a brother encounter a problem, that is, you can call the class directly from the function, I test, it is true, the concept is only a static method can be called, and now be refreshed, so I added a line in the method $this related operations, and then run, immediately error, That is, PHP does not have strict restrictions when invoking a method, but when executed inside the method, it is thrown when it encounters the variable $this: Using $this When not in object context
That is, if your method does not involve the instantiation of this kind of reference, you can directly call the

Here is the test code:
T::t1 ();

Class t{
Private $data;

public static function T1 () {
echo "\ n";
Echo __method__;
echo "\ n";
SELF::F1 ();
}

public static function T2 () {
echo "\ n";
Echo __method__;
echo "\ n";
}

Public Function F1 () {
$this->data = ' Jken ';
echo "\ n";
Echo __method__;
echo "\ n";
}
}
?>

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.