如何声明全局变量和初始化



如何声明全局变量并初始化它?.

我有这种情况,我在 laravel 中使用 NEXMO SMS APP,我有一个全局变量,我在我的构造函数中初始化它,然后在我的公共函数中使用全局变量。在我的公共函数中使用它后,它说未定义的变量。为什么?。请大胆地帮助我,我只是一个初学者。

这是我的代码:

 class CheckVerify extends Controller {
         private $client;
         public function __construct() {
            $client = app('NexmoClient');    
        }
        public function mobile_verification($number) {                        
        $verification = $client->verify()->start([
            'number' => $number,
            'brand'  => 'Mysite'
        ]);
        }
        public function check_verify($code) {        
            $client->verify()->check($verification, $code);
        }
    }

这不是一个全局变量,它被称为类属性,它在类中定义(见 http://php.net/manual/en/language.oop5.properties.php(

当访问这些类型的变量时,你必须告诉PHP哪个对象包含你引用的变量,当它是当前对象时,你必须使用$this。 所以你的课程应该是这样的...

class CheckVerify extends Controller {
    private $client;
    public function __construct() 
    {
        $this->client = app('NexmoClient');    
    }
    public function mobile_verification($number) 
    { 
        $verification = $client->verify()->start([
            'number' => $number,
            'brand'  => 'Mysite'
        ]);
    }
    public function check_verify($code) 
    {        
        $this->client->verify()->check($verification, $code);
    }
}

作为一个额外的选项 - 考虑而不是硬编码构造函数中的值......

$this->client = app('NexmoClient'); 

将此值传递给构造函数...

public function __construct( $client ) {
    $this->client = $client;    
}

这称为依赖注入 (DI(,并允许更大的灵活性。

相关内容

  • 没有找到相关文章