spl_autoload_register([$this,'userAutoLoad'])
私の php5.3.29
[$this,'userAutoLoad']これはどういう意味ですか?
天蓬老师2017-11-02 22:09:53
sql_autoload_register()関数はユーザー定義をロードできます:自動ロード関数
$thisは現在インスタンス化されているオブジェクトを参照します、userAutoLoadはオブジェクト$this内のメソッドであり、クラスの自動ロードを実現できます