dongnuoyi8833 2017-11-09 11:43
浏览 18
已采纳

在类变量中存储连接

I am wondering how i can store my connection in a class variable and then keep reusing it ? Right now my code looks like this

This function sets up my Connection right now and is called everytime

function setDB()
{
$serviceAccount = ServiceAccount::fromJsonFile('firebase_credentials.json');
$firebase = (new Factory)
->withServiceAccount($serviceAccount)
->create();
$db = $firebase->getDatabase();

return $db;
}

This is one of my functions which needs the connection $db to get and update Data.

function Period($gameid, $action) 
{
$db = setDB();
$reference = $db->getReference('games/'.$gameid.'/Clock/CurrentPeriode');
$value = $reference->getValue();

if ($action =='m')
{
    $value = $value -1;
    $db->getReference('games/'.$gameid.'/Clock/CurrentPeriode')
    ->set($value);
} else {
    $value = $value +1;
    $db->getReference('games/'.$gameid.'/Clock/CurrentPeriode')
    ->set($value);
}
}

展开全部

  • 写回答

3条回答 默认 最新

  • dongqigu0429 2017-11-09 12:14
    关注

    The solution is using Singleton pattern:

    class DbConn
    {
        private $db;
    
        protected function  __construct()
        {
            $serviceAccount = ServiceAccount::fromJsonFile('firebase_credentials.json');
            $firebase = (new Factory)
                ->withServiceAccount($serviceAccount)
                ->create();
            $this->db = $firebase->getDatabase();
        }
    
    
        public function getInstance()
        {
            static $instance;
    
            if (!$instance) {
                $instance = new self();
            }
    
            return $instance;
        }
    
        public function getDb()
        {
            return $this->db;
        }
    
    }
    

    And usage will be looking like this:

    function Period($gameid, $action) 
    {
        $db = DbConn::getInstance()->getDb();
        $reference = .....
    

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部