php - How do I unset spl_autoload_register() and from where does it run? -
when using spl_autoload_register()
, if understand correctly, once run it, php saves every file.
the question have, , 3 questions, is:
- how remove function spl_autoload_register()?
- does spl_autoload_register() save functions autoloaded , restore them upon restarting php?
- does function in spl_autoload_register() run same location?
go php.net/spl_autoload_register. on left side, under
spl_autoload_register
, saysspl_autoload_unregister
.it saves autoloders every time script runs (which every time visits page).
if understand question then, yes. if tell find there (unless iffy).
Comments
Post a Comment