spl_autoload_register([$this,'userAutoLoad'])
내 php5.3.29
[$this,'userAutoLoad']이게 무슨 뜻인가요?
天蓬老师2017-11-02 22:09:53
sql_autoload_register() 함수는 사용자 정의를 로드할 수 있습니다: 자동 로딩 기능
$this는 현재 인스턴스화된 객체를 참조하고, userAutoLoad는 $this 객체의 메소드로, 클래스 자동 로딩을 실현할 수 있습니다