$ this->>这个符号在PHP中是什么意思

时间:2019-10-22 06:48:21

标签: php laravel syntax

  

注意:我尝试了谷歌搜索。但是确实得到了任何参考,可以解释   一样

嗨,我在参考GITHUB仓库https://github.com/jsdecena/baserepo

时遇到了这个->> 符号

这实际上是什么意思?它甚至没有__construct方法。这是否意味着它会自动绑定到PHP中的__contruct?

  

好的,我要强调 __ construct ,因为私有财产   无法直接调用模型函数。为此,我们需要   租赁模型

如果是拼写错误,至少我在课堂上没想到__construct。

以下是存储库Laravel中使用的相同代码段。

use App\Http\Controllers\Controller;
use App\Repositories\UserRepository;
use App\User;

class MyController extends Controller {

    private $userRepository;

    public function index() 
    {
        $user = $this->>userRepository->all(); /** <----- HERE THIS LINE ---- */

        return response()->json($data);    
    }
}

0 个答案:

没有答案