spl_autoload_register([$this,'userAutoLoad'])
My php5.3.29
[$this,'userAutoLoad']What does this mean?
sql_autoload_register() function can load user-defined: automatic loading function
$this refers to the currently instantiated object, userAutoLoad is $this The methods in this object can realize automatic loading of classes
sql_autoload_register() function can load user-defined: automatic loading function
$this refers to the currently instantiated object, userAutoLoad is $this The methods in this object can realize automatic loading of classes