SarkariResultess QA Bank

PHP null coalescing operator कैसे लिखते हैं? को debug कैसे करें?

Other 0 Views Verified
PHP null coalescing operator कैसे लिखते हैं? को debug कैसे करें? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

$name = $_GET['name'] ?: 'Guest';

$name = $_GET['name'] ?: 'Guest';
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$name = $_GET['name'] ??: 'Guest';

$name = $_GET['name'] ??: 'Guest';
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

$name = coalesce($_GET['name'],'Guest');

$name = coalesce($_GET['name'],'Guest');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

$name = $_GET['name'] ?? 'Guest';

$name = $_GET['name'] ?? 'Guest';
Additional Explanation
?? null/undefined array key fallback देता है। पहले exact error message, line number और input value check करें।