[PHP] PHP arguments getting lost in call!?

2011-02-13 Thread Florin Jurcovici
Hi. The entry point in my php app is a file containing something like: require_once(Disptacher.php); ... Dispatcher:dispatch($arguments); ... The file Dispatcher.php is located in the same folder as the file containing the above code, and contains the following: class Dispatcher {

Re: [PHP] PHP arguments getting lost in call!?

2011-02-13 Thread Nilesh Govindarajan
On 02/13/2011 02:06 PM, Florin Jurcovici wrote: Hi. The entry point in my php app is a file containing something like: require_once(Disptacher.php); ... Dispatcher:dispatch($arguments); ... The file Dispatcher.php is located in the same folder as the file containing the above

Re: [PHP] PHP arguments getting lost in call!?

2011-02-13 Thread Richard Quadling
On 13 February 2011 08:36, Florin Jurcovici florin.jurcov...@gmail.com wrote: Hi. The entry point in my php app is a file containing something like: require_once(Disptacher.php); ... Dispatcher:dispatch($arguments); ... The file Dispatcher.php is located in the same folder as the

Re: [PHP] PHP arguments getting lost in call!?

2011-02-13 Thread Florin Jurcovici
Me stupid, my bad. Turns out the bug isn't in my code, but in the debugger. I'm working with the trial version of Zend Studio. When inside the call to the static method, everything is undefined. If I look at variables using the Expressions view, I can see their values, and they _are_ defined.

Re: [PHP] PHP arguments getting lost in call!?

2011-02-13 Thread Thijs Lensselink
On 02/13/2011 10:00 AM, Florin Jurcovici wrote: Me stupid, my bad. Turns out the bug isn't in my code, but in the debugger. I'm working with the trial version of Zend Studio. When inside the call to the static method, everything is undefined. If I look at variables using the Expressions