SarkariResultess QA Bank

PHP cookie set कैसे करते हैं? इसका working code example क्या है?

Other 0 Views Verified
PHP cookie set कैसे करते हैं? इसका working code example क्या है? सही विकल्प चुनें और code/solution को समझें।
Sarkari Result QA Bank
Editorially reviewed exam information

Answer & Explanation

4 Answers
Verified

$_COOKIE['theme']='dark';

$_COOKIE['theme']='dark';
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified Correct Answer

setcookie('theme', 'dark', time() + 3600);

setcookie('theme', 'dark', time() + 3600);
Additional Explanation
setcookie() response header के जरिए cookie set करता है।
Verified

cookie_set('theme','dark');

cookie_set('theme','dark');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।
Verified

set_cookie_value('theme');

set_cookie_value('theme');
Additional Explanation
यह विकल्प सही Core PHP solution नहीं है।