Jump to content

Unset problem


gevensen

Recommended Posts

Also, make sure that in every instance where you are using unset that you are also using the appropriate/desired array index. For example, if I accidentally used unset($_SESSION) ... I would wipe out all sessions for that user, regardless of the array indexes.

Link to comment
https://forums.phpfreaks.com/topic/165810-unset-problem/#findComment-874705
Share on other sites

I'm not sure I understand the question but I'll answer from every angle I can think of.

 

phpinfo(); is a helpful (and dangerous) read-only core method within the PHP language.  The displayed results will give very detailed info about the configured php runtime environment on your server and all the things available.

 

register_globals() is a function that you can call in your scripts to tell php to make a variable available to all parts of a script regardless of scoping.  It is mostly discouraged from use not because it is a faulty function but because of a general lack in understanding of the function and how to use it responsibly (as it can be a very dangerous function when used in a vulnerable script or incorrectly).

Link to comment
https://forums.phpfreaks.com/topic/165810-unset-problem/#findComment-874721
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.