SarkariResultess QA Bank

PHP cleanup के लिए finally block क्यों उपयोगी है? इसका working code example क्या है?

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

Answer & Explanation

4 Answers
Verified Correct Answer

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

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

finally runs only when no exception

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

finally replaces try

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

finally only catches errors

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