Whether site will complete the execution of the script if
Fatal error occurs ?



Whether site will complete the execution of the script if Fatal error occurs ?..

Answer / pankajbisane

No, Script will not execute if Fatal error occurred.
It halts execution.

Is This Answer Correct ?    5 Yes 1 No

Post New Answer

More PHP Interview Questions

How would you declare a function that receives one parameter name hello?

0 Answers  


What version of php do I have windows?

0 Answers  


how php works with oracle?

1 Answers  


How to replace a text in a string with another text in php?

0 Answers  


Do you know what is the difference between the include() and require() functions?

0 Answers  






class Database { public static $_instance; public static function getInstance() { if(!isset(self::$_instance)) self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME); print_r(self::$_instance); return self::$_instance; } } can any one explain "self::$_instance = new Database(DB_SERVER, DB_USER, DB_PASS, DB_NAME);" this line

1 Answers  


Is laravel frontend or backend?

0 Answers  


Why do we create an instance of a class in php?

1 Answers  


What is the use of strip_tags() method?

0 Answers  


What is the main difference between php 4 and php 5?

0 Answers  


what is view?

0 Answers  


What is the substitution of submit in PHP?

6 Answers   RedAlkemi,


Categories