What does the new syntax newstatic in PHP mean?

Source: Internet
Author: User
{Code...} newstatic ($ user); what does it mean ??
php
public static function findIdentityByAccessToken($token, $type = null) { foreach (self::$users as $user) { if ($user['accessToken'] === $token) { return new static($user); } } return null; }

Thisnew static($user);What does that mean ??

Reply content:
php
public static function findIdentityByAccessToken($token, $type = null) { foreach (self::$users as $user) { if ($user['accessToken'] === $token) { return new static($user); } } return null; }

Thisnew static($user);What does that mean ??

In simple terms, self is written in which class, and actually called is this class. the so-called static binding later, static indicates the class used, that is, the static file you write in the parent class, and then the static file is directly/indirectly used through the subclass, static refers to this subclass, so static is similar to $ this, but static can be used for static methods and attributes.

For example,

class ATest {    public function say()    {        echo 'Segmentfault';    }    public function callSelf()    {        self::say();    }    public function callStatic()    {        static::say();    }}class BTest extends ATest {    public function say()    {        echo 'PHP';    }}$b = new BTest();$b->say(); // output: php$b->callSelf(); // output: segmentfault$b->callStatic(); // output: php

This is the sample paper ~

SimilarselfHoweverstaticKeyword can be used for static binding later. Reference: http://php.net/manual/zh/language.oop5.late-static-bindings.php

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.