Home / Questions / Other PHP exception handling का basic syntax क्या है? में error आए तो solution क्या है? Other 0 Views Verified PHP exception handling का basic syntax क्या है? में error आए तो solution क्या है? सही विकल्प चुनें और code/solution को समझें। #php #core php #php programming #php tutorial #php error #php solution #backend #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified Correct Answer try { risky(); } catch (Throwable $e) { log_error($e); } try { risky(); } catch (Throwable $e) { log_error($e); } Additional Explanation try/catch exceptions और Throwable errors handle कर सकता है। पहले exact error message, line number और input value check करें।
Verified try risky() except $e try risky() except $e Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified catch around try only catch around try only Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified handle risky with error() handle risky with error() Additional Explanation यह विकल्प सही Core PHP solution नहीं है।