SarkariResultess QA Bank

PHP cleanup के लिए finally block क्यों उपयोगी है? production project में safely कैसे use करें?

Other 0 Views Verified
PHP cleanup के लिए finally block क्यों उपयोगी है? production project में safely कैसे use करें? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

finally only catches errors

finally only catches errors
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

finally replaces try

finally replaces try
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

try { work(); } finally { cleanup(); }

try { work(); } finally { cleanup(); }
Additional Explanation
finally cleanup को success/error paths में execute करने के लिए उपयोगी है। Production में logging और safe error handling रखें।
Verified

finally runs only when no exception

finally runs only when no exception
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।