SarkariResultess QA Bank

Answer & Explanation

4 Answers
Verified

$value = nil;

$value = nil;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

$value = null;

$value = null;
Additional Explanation
null absence of value represent करता है। पहले exact error message, line number और input value check करें।
Verified

$value = empty;

$value = empty;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$value = NULL_VALUE;

$value = NULL_VALUE;
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।