Is there anyway to have PHP execute a function or object method automatically when a session is expired? In JAVA, you can define an httpSessionBindingEvent which will notify an object when it is bound to or unbound from a session. This may be the result of a servlet programmer explicitly unbinding an attribute from a session, due to a session being invalidated, or due to a session timing out. I need this behavior in PHP.
Joe Krause