search
Homephp教程PHP源码php5.3匿名函数实现单例模式

php5.3匿名函数实现单例模式

May 25, 2016 pm 04:59 PM
anonymous functionSingleton patternaccomplish

从laravel源码中看到的,学习下。
执行代码返回如下信息:
init
string 'msg' (length=3)
string 'msg' (length=3)
init
string 'msg2' (length=4)
init
string 'msg3' (length=4)
string 'msg3' (length=4)
string 'msg3' (length=4)

php代码

class cc {
 
    function normal($a)
    {
        static $object;
 
        if (is_null($object))
        {
            echo 'init';
            $object = $a;
        }
 
        return $object;
    }
 
    public function share($p)
    {
        return function() use ($p)
        {
            static $object;
 
            if (is_null($object))
            {
                echo 'init';
                $object = $p;
            }
 
            return $object;
        };
    }
 
}
 
$c = new cc();
 
$msg = $c->share('msg');
var_dump($msg());
var_dump($msg());
$msg2 = $c->share('msg2');
var_dump($msg2());
 
$msg3 = $c->normal('msg3');
var_dump($msg3);
var_dump($msg3);
$msg4 = $c->normal('msg4');
var_dump($msg4);
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.