PHP is a very versatile and interesting web programming language, which is being used by majority of web developers in terms of writing codes for functional websites. Whey PHP is so popular is due to its versatility as a web development language. Also being an open source development language, you get to enjoy a lot of tool and support in PHP. There is an open access to millions of developers from all over the world through the PHP communities who can help you out in fixing the errors as well as assisting in your development process with inputs and guidance.

Errors in PHP

There is a possibility of errors happening in the PHP codes and it will be good if you are having an awareness about some of the basic and frequent errors PHP programmers need to deal with. By known the major such errors and the fix for them, you can make your PHP development endeavor more successful and time saving. cheap hotels Basically, there are three types of run-time errors noted in PHP.

1. Notices: These are basically small and noncritical PHP errors. The notices are shown while the errors are encountered while running a script. For example, it can be shown while trying to access a variable that has not been clearly defined. However, by default, these are not displayed to the user.

2. Warnings: Warnings are severe than the notices, like attempting the inclusion of any file that does not exist. By default, such errors are also displayed to the users, but not causing any script termination.

3. Fatal errors: As the name suggests, these are highly critical. Say for example, assigning an object for a nonexistent class or calling up a nonexistent function etc. domain value Such errors can also cause instant termination of the script and by default, these will be displayed to the users also while they take place.

Fix php fatal error

Further, we will list out a few different types of PHP errors frequently shows up;

  • E_ERROR : It is considered to be one among the fatal errors encountered during PHP coding, which can end up in script termination, in which case you will fail to run it successfully.
  • E_WARNING : It is a run-time warning which is being popped up, however it may not be causing script termination.
  • E_PARSE : This is basically the time parse errors compiled.
  • E_NOTICE : This is again a runtime notice, which is popped up due to particular errors in the code.
  • E_CORE_ERROR : These are again fatal errors, which can occur during the initial startup of PHP. Basically during the installation of PHP.
  • E_CORE_WARNING : These are the warnings popped up during the initial set up of PHP, which indicates errors.
  • E_COMPILE_ERROR : These are very serious compile time errors which indicate the problem with the script.
  • E_USER_ERROR : It  is a user-generated error message.
  • E_USER_WARNING : These are warning messages, which are user generated.
  • E_USER_NOTICE : Notice messages that are user generated.
  • E_STRICT : Another type of run-time notice to make a note of.
  • E_RECOVERABLE_ERROR : These are recoverable PHP errors, which indicates fatal errors, which may end up in termination.
  • E_ALL : This catches all types of errors and warning in PHP codes.

 

Author - phpfix comments - 0 Tags: ,,,

Post a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Copyright © 2014 - Designed by Jolly Themes