Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How many ways you can delete a session variable ?

Answers were Sorted based on User's Feedback



How many ways you can delete a session variable ?..

Answer / prasad

two ways

Seesion_destroy
unset

Is This Answer Correct ?    28 Yes 1 No

How many ways you can delete a session variable ?..

Answer / chetan

session_destroy()
....// it will delete all session variables at once
unset
session_unregister()

Is This Answer Correct ?    4 Yes 0 No

How many ways you can delete a session variable ?..

Answer / anoop

The correct answer is 4 ways .
1 UNSET();
2 session_unset()
3 seesion_unregister()
4 session_destroy()

Is This Answer Correct ?    5 Yes 1 No

How many ways you can delete a session variable ?..

Answer / anuj kumar gupta

session_destroy() — Destroys all data registered to a session

session_unregister() — Unregister a global variable from the
current session

session_unset() — Free all session variables

If globals is on, you'll have to unset the
$_SESSION[varname] as well as the $varname.

Like:

unset($_SESSION[varname]);
unset($varname);

Is This Answer Correct ?    4 Yes 0 No

How many ways you can delete a session variable ?..

Answer / hemant gore

unset($_SESSION)
session_unset()
seesion_unregister()
session_destroy()

Is This Answer Correct ?    3 Yes 0 No

How many ways you can delete a session variable ?..

Answer / john suresh

only one way

Is This Answer Correct ?    4 Yes 10 No

Post New Answer

More PHP Interview Questions

How to create an empty array in php?

0 Answers  


Explain about PHP filter and why it should be used?

0 Answers  


What are the correct and the most two common way to start and finish a PHP block of code?

0 Answers  


How to redirect https to http url through .htaccess?

0 Answers  


Is string php function?

0 Answers  


What is an example of a variable?

0 Answers  


How can we get ip address of a client in php?

0 Answers  


What is a php object?

0 Answers  


What is the use of "ksort" in php?

0 Answers  


Write down the benefits of php7?

0 Answers  


What is difference between echo and print in php?

0 Answers  


Explain about image types in detail?

1 Answers   Aplora,


Categories