Re: [nyphp-talk] function references

2009-01-10 Thread Jesse Callaway
Sweet so, I think $a = 'my_func'; does it for me. I'd love to understand the following code, but I'll have to read it a couple more times. Haven't quite gotten into classy stuff like this yet. Looks like actionscript to me with this execute function. Thanks so much. I didn't expect to get this g

Re: [nyphp-talk] Sessions and cross domains

2009-01-10 Thread Michele Waldman
Doh! I think my call to clearauthenticationcache is killing the session. Sorry guys. _ From: talk-boun...@lists.nyphp.org [mailto:talk-boun...@lists.nyphp.org] On Behalf Of Michele Waldman Sent: Saturday, January 10, 2009 6:53 PM To: 'NYPHP Talk' Subject: [nyphp-talk] Sessions and cro

[nyphp-talk] Sessions and cross domains

2009-01-10 Thread Michele Waldman
I using http and https in an iframe. I have session variables for both. Http does not need to know about https and vice versa. In IE, if I load http the session variable are fine. If I load https, the session variables are fine. However, when I have a page with http and https, it's not fine. T

Re: [nyphp-talk] function references

2009-01-10 Thread Elijah Insua
umm... with objects this gets sexy. class Add { public function execute($a, $b) { return $a + $b; } } class Subtract { public function execute($a, $b) { return $a - $b; } } $executors = array(array('object'=>new Add(), 'params' => array(1,1))); foreach ($executors as $execute) { ec

Re: [nyphp-talk] function references

2009-01-10 Thread Brian O'Connor
Oh sorry, forgot to add this too, which I think better fits your question: prints: hello On Sat, Jan 10, 2009 at 5:40 PM, Brian O'Connor wrote: > I believe this is what you're looking for. > > I've done similar things in the past, but I don't have the code handy. > > http://www.php.net/manua

Re: [nyphp-talk] function references

2009-01-10 Thread Brian O'Connor
I believe this is what you're looking for. I've done similar things in the past, but I don't have the code handy. http://www.php.net/manual/en/language.variables.variable.php On Sat, Jan 10, 2009 at 2:45 PM, Jesse Callaway wrote: > Is it possible to take a reference to a function and then stic

[nyphp-talk] function references

2009-01-10 Thread Jesse Callaway
Is it possible to take a reference to a function and then stick it in an array? I'd like to have an array with function names as the keys and the values would be references to the actual function. This way I could do do[$that_function]; Basically being lazy and don't want to have a big ugly swi