Home / Questions / Other PHP सभी reportable errors select करने के लिए क्या उपयोग करते हैं? इसका सही PHP syntax क्या है? Other 0 Views Verified PHP सभी reportable errors select करने के लिए क्या उपयोग करते हैं? इसका सही PHP syntax क्या है? सही विकल्प चुनें और 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 enable_php_errors(); enable_php_errors(); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified error_reporting(OFF_ALL); error_reporting(OFF_ALL); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer error_reporting(E_ALL); error_reporting(E_ALL); Additional Explanation E_ALL सभी reportable PHP errors select करता है।
Verified show_errors(EVERYTHING); show_errors(EVERYTHING); Additional Explanation यह विकल्प सही Core PHP solution नहीं है।