PHP about the Static keyword

Source: Internet
Author: User

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. 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 {public    static $speed = ten;  Define a static property    //This is a public method of the common    function getspeed () {        return self:: $speed;  Get current Speed    }
This is a static method
public static function SpeedUp () {
        Return self:: $speed +=10;  Get acceleration Speed    }

Inherited:
Class Bigcar extends car{
public static function Start ()
{
Parent::speedup (); Calling the parent class's method acceleration
   
}
}
Bigcar::start (); static method acceleration for calling Bigcar
$car = new car ();
$car->getspeed (); Call public method to get current speed
Car::speedup (); Call the static method to get the acceleration


php about 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.