Home / Questions / Other PHP `isset()` और `array_key_exists()` में basic difference क्या है? को debug कैसे करें? Other 0 Views Verified PHP `isset()` और `array_key_exists()` में basic difference क्या है? को debug कैसे करें? सही विकल्प चुनें और 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 array_key_exists केवल strings पर चलता है array_key_exists केवल strings पर चलता है Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified दोनों हमेशा identical हैं दोनों हमेशा identical हैं Additional Explanation यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer isset() null पर false हो सकता है; array_key_exists() key मौजूद होने पर true देता है, even if value null है isset() null पर false हो सकता है; array_key_exists() key मौजूद होने पर true देता है, even if value null है Additional Explanation Null-valued keys के लिए यह distinction महत्वपूर्ण है। पहले exact error message, line number और input value check करें।
Verified isset केवल classes पर चलता है isset केवल classes पर चलता है Additional Explanation यह विकल्प सही Core PHP solution नहीं है।