Jump to content

Recommended Posts

hello guys i got a small questions.. does anyone have an idea how can i handle the errors for spl_autoload function? i don't have any idea how should i build the code for that.. to output an error when the files doesn't exist / class... can someone point me to an article about that without eval() ? or does anyone have an example ?

Link to comment
https://forums.phpfreaks.com/topic/194182-spl_autoload-functions/
Share on other sites

You can use exception handling to report the error. For example (to be used as a guideline, not a fully working and useful script):

 

try 
{
// Try to load class Example
spl_autoload('Example');

// Do something with Example
// ...
}
catch (LogicException $e) 
{
// The class could not be loaded, exit with an error message
die("Error: " . $e->getMessage());
}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.