Home >> PHP >> display errors in PHP

display errors in PHP

There are three types of runtime errors:

Notices- These are non-critical errors.
Example- variable not defined

Warnings- These errors are serious errors but continue execution of the script.
Example-include() a file which does not exist.

Fatal Errors-These errors are critical errors.These errors cause the immediate termination of script.
Example-require() a file which does not exist or calling a non existing function.

Post Your Comment

Next Questions
string to array
array to string
how to split string into array
How to convert array to string
Difference between exit and die
Set Cookie
Access Cookie
Remove Cookie
how to remove \r\n from string
how to remove new lines from string
how to remove nbsp from string
How to remove all whitespace from a string
How to convert array to string separated by comma
How to list last 12 months from current month
Get the last 12 months from current month
How to list last 6 months from current month
Get the last 6 months from current month
How to list last 12 months from current month by loop
Get the last 12 months from current month by loop
How to list last 6 months from current month by loop
Get the last 6 months from current month by loop
Differentiate between variables and constants
How to increase maximum execution time
How to Increase File Upload Size
Set maximum execution time

Copyright ©2022 coderraj.com. All Rights Reserved.