cri2net/php-singleton

PHP 单例模式特质

1.1 2021-06-20 17:36 UTC

This package is auto-updated.

Last update: 2024-09-21 00:39:34 UTC


README

这是实现单例模式的PHP特质;

用法

<?php

use cri2net\php_singleton\Singleton;

class YourClass
{
    use Singleton;
    
    /*
    code of your class
    */
}

$obj = YourClass::getInstance();