Pimple執行流程淺析(PHP容器)

2020-07-16 10:06:12

需要具備的知識點

閉包

閉包和匿名函數在PHP5.3.0中引入的。

閉包是指:

建立時封裝周圍狀態的函數。即使閉包所處的環境不存在了,閉包中封裝的狀態依然存在。

理論上,閉包和匿名函數是不同的概念。但是PHP將其視作相同概念。

實際上,閉包和匿名函數是偽裝成函數的物件。他們是Closure類的範例。

閉包和字串、整數一樣,是一等值型別。

建立閉包:

<?php
$closure = function ($name) {
    return 'Hello ' . $name;
};
echo $closure('nesfo');//Hello nesfo
var_dump(method_exists($closure, '__invoke'));//true

我們之所以能呼叫$closure變數,是因為這個變數的值是一個閉包,而且閉包物件實現了__invoke()魔術方法。只要變數名後有(),PHP就會查詢並呼叫__invoke()方法。

通常會把PHP閉包當作函數的回撥使用。

array_map(), preg_replace_callback()方法都會用到回撥函數,這是使用閉包的最佳時機!

舉個例子:

<?php
$numbersPlusOne = array_map(function ($number) {
    return $number + 1;
}, [1, 2, 3]);
print_r($numbersPlusOne);

得到結果:

[2, 3, 4]

在閉包出現之前,只能單獨建立具名函數,然後使用名稱參照那個函數。這麼做,程式碼執行會稍微慢點,而且把回撥的實現和使用場景隔離了。

<?php
function incrementNum ($number) {
    return $number + 1;
}
$numbersPlusOne = array_map('incrementNum', [1, 2, 3]);
print_r($numbersPlusOne);

SPL

ArrayAccess

實現ArrayAccess介面,可以使得object像array那樣操作。ArrayAccess介面包含四個必須實現的方法:

interface ArrayAccess {
    //檢查一個偏移位置是否存在 
    public mixed offsetExists ( mixed $offset  );
    
    //獲取一個偏移位置的值 
    public mixed offsetGet( mixed $offset  );
    
    //設定一個偏移位置的值 
    public mixed offsetSet ( mixed $offset  );
    
    //復位一個偏移位置的值 
    public mixed offsetUnset  ( mixed $offset  );
}

SplObjectStorage

SplObjectStorage類實現了以物件為鍵的對映(map)或物件的集合(如果忽略作為鍵的物件所對應的資料)這種資料結構。這個類的範例很像一個陣列,但是它所存放的物件都是唯一。該類的另一個特點是,可以直接從中刪除指定的物件,而不需要遍歷或搜尋整個集合。

::class語法

因為 ::class 表示是字串。用 ::class 的好處在於 IDE 裡面可以直接改名一個 class,然後 IDE 自動處理相關參照。

同時,PHP 執行相關程式碼時,是不會先載入相關 class 的。

同理,程式碼自動化檢查 inspect 也可以正確識別 class。

Pimple容器流程淺析

Pimpl是php社群中比較流行的容器。程式碼不是很多,詳見

https://github.com/silexphp/Pimple/blob/master/src/Pimple/Container.php 。

我們的應用可以基於Pimple開發:

namespace EasyWeChatFoundation;
use PimpleContainer;
class Application extends Container
{
    /**
     * Service Providers.
     *
     * @var array
     */
    protected $providers = [
        ServiceProvidersServerServiceProvider::class,
        ServiceProvidersUserServiceProvider::class
    ];
    /**
     * Application constructor.
     *
     * @param array $config
     */
    public function __construct($config)
    {
        parent::__construct();
        $this['config'] = function () use ($config) {
            return new Config($config);
        };
        if ($this['config']['debug']) {
            error_reporting(E_ALL);
        }
        $this->registerProviders();
    }
    /**
     * Add a provider.
     *
     * @param string $provider
     *
     * @return Application
     */
    public function addProvider($provider)
    {
        array_push($this->providers, $provider);
        return $this;
    }
    /**
     * Set providers.
     *
     * @param array $providers
     */
    public function setProviders(array $providers)
    {
        $this->providers = [];
        foreach ($providers as $provider) {
            $this->addProvider($provider);
        }
    }
    /**
     * Return all providers.
     *
     * @return array
     */
    public function getProviders()
    {
        return $this->providers;
    }
    /**
     * Magic get access.
     *
     * @param string $id
     *
     * @return mixed
     */
    public function __get($id)
    {
        return $this->offsetGet($id);
    }
    /**
     * Magic set access.
     *
     * @param string $id
     * @param mixed  $value
     */
    public function __set($id, $value)
    {
        $this->offsetSet($id, $value);
    }
}

如何使用我們的應用:

$app = new Application([]);
$user = $app->user;

之後我們就可以使用$user物件的方法了。我們發現其實並沒有$this->user這個屬性,但是可以直接使用。主要是這兩個方法起的作用:

public function offsetSet($id, $value){}
public function offsetGet($id){}

下面我們將解釋在執行這兩句程式碼,Pimple做了什麼。但在解釋這個之前,我們先看看容器的一些核心概念。

服務提供者

服務提供者是連線容器與具體功能實現類的橋樑。服務提供者需要實現介面ServiceProviderInterface:

namespace Pimple;
/**
 * Pimple service provider interface.
 *
 * @author  Fabien Potencier
 * @author  Dominik Zogg
 */
interface ServiceProviderInterface
{
    /**
     * Registers services on the given container.
     *
     * This method should only be used to configure services and parameters.
     * It should not get services.
     *
     * @param Container $pimple A container instance
     */
    public function register(Container $pimple);
}

所有服務提供者必須實現介面register方法。

我們的應用裡預設有2個服務提供者:

protected $providers = [
    ServiceProvidersServerServiceProvider::class,
    ServiceProvidersUserServiceProvider::class
];

UserServiceProvider為例,我們看其程式碼實現:

namespace EasyWeChatFoundationServiceProviders;
use EasyWeChatUserUser;
use PimpleContainer;
use PimpleServiceProviderInterface;
/**
 * Class UserServiceProvider.
 */
class UserServiceProvider implements ServiceProviderInterface
{
    /**
     * Registers services on the given container.
     *
     * This method should only be used to configure services and parameters.
     * It should not get services.
     *
     * @param Container $pimple A container instance
     */
    public function register(Container $pimple)
    {
        $pimple['user'] = function ($pimple) {
            return new User($pimple['access_token']);
        };
    }
}

我們看到,該服務提供者的註冊方法會給容器增加屬性user,但是返回的不是物件,而是一個閉包。這個後面我再做講解。

服務註冊

我們在Application裡建構函式裡使用$this->registerProviders();對所有服務提供者進行了註冊:

private function registerProviders()
{
    foreach ($this->providers as $provider) {
        $this->register(new $provider());
    }
}

仔細看,我們發現這裡範例化了服務提供者,並呼叫了容器Pimple的register方法:

public function register(ServiceProviderInterface $provider, array $values = array())
{
    $provider->register($this);
    foreach ($values as $key => $value) {
        $this[$key] = $value;
    }
    return $this;
}

而這裡呼叫了服務提供者的register方法,也就是我們在上一節中提到的:註冊方法給容器增加了屬性user,但返回的不是物件,而是一個閉包。

當我們給容器Pimple新增屬性user的同時,會呼叫offsetSet($id, $value)方法:給容器Pimple的屬性values、keys分別賦值:

$this->values[$id] = $value;
$this->keys[$id] = true;

到這裡,我們還沒有範例化真正提供實際功能的類EasyWeChatUserUsr。但已經完成了服務提供者的註冊工作。

當我們執行到這裡:

$user = $app->user;

會呼叫offsetGet($id)並進行範例化真正的類:

$raw = $this->values[$id];
$val = $this->values[$id] = $raw($this);
$this->raw[$id] = $raw;
$this->frozen[$id] = true;
return $val;

$raw獲取的是閉包:

$pimple['user'] = function ($pimple) {
    return new User($pimple['access_token']);
};

$raw($this)返回的是範例化的物件User。也就是說只有實際呼叫才會去範例化具體的類。後面我們就可以通過$this['user']或者$this->user呼叫User類裡的方法了。

當然,Pimple裡還有很多特性值得我們去深入研究,這裡不做過多講解。

以上就是Pimple執行流程淺析(PHP容器)的詳細內容,更多請關注TW511.COM其它相關文章!