What are the different types of errors in PHP?
Answers were Sorted based on User's Feedback
Answer / sreedevi
E_warining
E_error
E_notice
E_user_error
E_user_notice
E_user_warning
E_all
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rubina
There are three types of Errors:
Notices:They are not critical errors.They are not displayed
t the users
Warnings:they are trivial.They are displayed to the user but
it does not stop the execution of script.
Fatal errors:They are critical errors and they stop the
execution of the script when they are encountered.
The above mentioned E_ALL,E_PARSER are error constants
| Is This Answer Correct ? | 3 Yes | 0 No |
Explain me what is the use of 'print' in php?
Questions on OOP concepts 1. What are the access specifiers available in php ? Explain 2. What is object cloning ? 3. What are the differences between interface and abstract class ? 4. What is overloading ? 5. What is overriding ? 6. How to prevent function overriding ? 7. What is the use of "final" keyword ? 8. What is static variable ? How will access a static variable ? What is static class ?
What is php pathinfo?
write code to find the date difference b/w two given date using PHP not MYSQL function?
3 Answers HyperQuality, Synctra Solutions,
Where are php configuration settings stored?
Differentiate between php5 and php7?
Is php easier than node?
How to check if a string contains a character or word in php?
How to split a string into array using php?
How can I execute a PHP script using command line?
What is isset php?
What are the uses of implode() function?