How can we destroy the session, how can we unset the
variable of a session?

Answers were Sorted based on User's Feedback



How can we destroy the session, how can we unset the variable of a session?..

Answer / sreenia

the better way of destroying a session is to first unset all
the values of $_SESSION variables individually, and then use
the session_destroy() function

Is This Answer Correct ?    17 Yes 6 No

How can we destroy the session, how can we unset the variable of a session?..

Answer / devendrarjadav

session_destroy() function destroys all data registered to
current session. use unset function to destroy varible
specified with session. So to destroy $name registered with
session use unset($name) in your php script.

Is This Answer Correct ?    16 Yes 6 No

How can we destroy the session, how can we unset the variable of a session?..

Answer / sri harsha

session can be destroyed by using session_destroy() function
and variable can be unset by unset($_session['name']).

Is This Answer Correct ?    11 Yes 3 No

How can we destroy the session, how can we unset the variable of a session?..

Answer / murali

session can be destroyed by using session_destroy() function
and variable can be unset by unset($_session['name']), and
also write like this...
$_session['name']=='';
you can assign null.

Is This Answer Correct ?    5 Yes 0 No

How can we destroy the session, how can we unset the variable of a session?..

Answer / pawan chhabra

// Create a logout.php file then..

<?php
session_start();
header("location:login.php");
session_destroy();
??

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More PHP Interview Questions

What is better .net or php?

0 Answers  


Which is better php or nodejs?

0 Answers  


Define object-oriented methodology?

0 Answers  


How to get elements in reverse order of an array in php?

0 Answers  


Define anonymous classes in php7?

0 Answers  






Could we start a variable with number like $4name?

0 Answers  


i am a 3yr diploma holder(CSE) from bangalore and i got job as php developer.. starting 7.5k... but i dont know what is the future carreer scop for diploma holders(for me)...plz help

2 Answers   Wipro,


Is salary a ratio or interval?

0 Answers  


What is exception in php?

4 Answers  


What are the features and advantages of object-oriented programming in php?

0 Answers  


Why do we use php?

0 Answers  


Is php a cms?

0 Answers  


Categories