Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-26 Thread Jochem Maas
markw@mohawksoft.com wrote: >> markw@mohawksoft.com wrote: >>> [snip] seems the perceived problem is being caused by something else? >>> Sorry, I have to respectfully disagree. >> ok :-). > > Men of integrity must be able to disgree peacefully. :-) > :-) > > Well, the point I was try

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-25 Thread markw
> markw@mohawksoft.com wrote: >> [snip] >>> seems the perceived problem is being caused by something else? >>> >> >> Sorry, I have to respectfully disagree. > > ok :-). Men of integrity must be able to disgree peacefully. :-) > >> >> I was converting all indexes to string indexes, and simply usin

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-25 Thread Jochem Maas
markw@mohawksoft.com wrote: > [snip] >> seems the perceived problem is being caused by something else? >> > > Sorry, I have to respectfully disagree. ok :-). > > I was converting all indexes to string indexes, and simply using > "zend_hash_update" to re-constitute the objects and they simply di

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-24 Thread Jochem Maas
Mark wrote: > Mark wrote: > >> I have an extension that seems to create PHP variables correctly, and >> var_dump() doesn't seem to have a problem. but upon moving to 5.1.x it >> fails. >> >> Anyone have a suggestion? > > Well, it is fixed. Evidently, PHP 5.1 sees a difference between $var["0"] >

Re: [PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-24 Thread markw
[snip] > > seems the perceived problem is being caused by something else? > Sorry, I have to respectfully disagree. I was converting all indexes to string indexes, and simply using "zend_hash_update" to re-constitute the objects and they simply did not work. When I scanned indexes strings to test

[PHP] Re: Stumped! 4.x to 5.1 problem!!

2006-07-21 Thread Mark
Mark wrote: > I have an extension that seems to create PHP variables correctly, and > var_dump() doesn't seem to have a problem. but upon moving to 5.1.x it > fails. > > Anyone have a suggestion? Well, it is fixed. Evidently, PHP 5.1 sees a difference between $var["0"] and $var[0]. It never did