16/7/7_php-static Static keyword

Source: Internet
Author: User
Static statically-keyword

Static properties and methods can be called without instantiating the class, directly in the way they are used 类名::方法名 . Static properties do not allow an object to be called with an operator.

Class Car {    private static $speed = ten;        public static function GetSpeed () {        return self:: $speed;    }} Echo Car::getspeed ();  Calling a static method

Static methods can also be dynamically called through variables

$func = ' getspeed '; $className = ' Car '; Echo $className:: $func ();  Dynamic invocation of static methods

In a static method, $this pseudo-variable is not allowed. You can use Self,parent,static to invoke static methods and properties internally.

Class Car {    private static $speed = ten;        public static function GetSpeed () {        return self:: $speed;    }        public static function SpeedUp () {        return self:: $speed +=10;    }} Class Bigcar extends Car {public    static function start () {        parent::speedup ();}    } Bigcar::start (); Echo Bigcar::getspeed ();

16/7/7_php-static Static keyword

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.