Question from the PHP5 test

What is the output of the following code? ``` $cookie_name = 'test'; $cookie_value = 'test'; $cookie_expire = time() - 1; setcookie($cookie_name, $cookie_value, $cookie_expire); echo $_COOKIE[$cookie_name]; ```

Medium

What operation allows to destroy a cookie previously created?

Author: Mathieu RobinStatus: PublishedQuestion passed 73 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!