我一直在试图解决为什么不调用我的脚本的问题。
我正在使用PHP Google Standard App Engine
。我有一个具有以下构造/成员的Users类:
<?php
require_once __DIR__ . '/vendor/autoload.php';
use Kreait\Firebase\Factory;
class Users {
//db
protected $database;
protected $dbname = 'users';
private $ref;
<member_variables>
public function __construct(<arguments>){
//firebase sync
$firebase = (new Factory())->create();
$this->database = $firebase->getDatabase();
$this->ref = $this->database->getReference();
<member assignment>
}
当我调用此类时,我的代码停止执行。我在这里做错什么了吗?
谢谢:)