SarkariResultess QA Bank

PHP development में display_errors enable कैसे कर सकते हैं? interview में कैसे explain करेंगे?

Other 0 Views Verified
PHP development में display_errors enable कैसे कर सकते हैं? interview में कैसे explain करेंगे? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

display_errors(true);

display_errors(true);
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

ini_set('display_errors', '1');

ini_set('display_errors', '1');
Additional Explanation
ini_set() allowed runtime config बदल सकता है।
Verified

show_php_errors();

show_php_errors();
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

php.display_errors(true);

php.display_errors(true);
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।