best var dump I"ve ever seen!
best var dump I"ve ever seen!
am 05.11.2007 05:31:01 von otrWalter
http://dbug.ospinto.com/
Take a look at this and see if this doesn't help you when you just
can't see waht's the matter with your data!
I spent 2 years on a 'var debug' to help me see what a variable
contains and what PHP thought the type was. I pitched mine when I
found this one!
And... as usual... I had to make a *small* ;) changes to it. They
should incorporated into the next version sometime soon.
Hope this helps you, somehow!
Walter
Re: best var dump I"ve ever seen!
am 05.11.2007 10:36:40 von Chris Gorospe
Looks good to me! :) I'll give it a try and see how goes it. I too have
lost count of how many times I've debugged for hours to find a simple
variable screwing up the world for me :P
Re: best var dump I"ve ever seen!
am 05.11.2007 13:05:45 von luiheidsgoeroe
On Mon, 05 Nov 2007 05:31:01 +0100, otrWalter@gmail.com
wrote:
> http://dbug.ospinto.com/
>
> Take a look at this and see if this doesn't help you when you just
> can't see waht's the matter with your data!
>
> I spent 2 years on a 'var debug' to help me see what a variable
> contains and what PHP thought the type was. I pitched mine when I
> found this one!
>
> And... as usual... I had to make a *small* ;) changes to it. They
> should incorporated into the next version sometime soon.
>
> Hope this helps you, somehow!
Hmm, I'll check it out soon. In the mean while: xdebug also changes the
var_dump function quite pleasantly.
--
Rik Wasmus
Re: best var dump I"ve ever seen!
am 05.11.2007 14:12:42 von NerdRevenge
otrWalter@gmail.com wrote:
> http://dbug.ospinto.com/
>
> Take a look at this and see if this doesn't help you when you just
> can't see waht's the matter with your data!
>
> I spent 2 years on a 'var debug' to help me see what a variable
> contains and what PHP thought the type was. I pitched mine when I
> found this one!
>
> And... as usual... I had to make a *small* ;) changes to it. They
> should incorporated into the next version sometime soon.
>
> Hope this helps you, somehow!
>
> Walter
>
Did you perchance make a *small* change so that it displays the
var name for non-structured variables ?
AFAIK, now if you display a non-structured variable, it only
displays the value, not the name.
bill
Re: best var dump I"ve ever seen!
am 05.11.2007 17:49:09 von otrWalter
> AFAIK, now if you display a non-structured variable, it only
> displays the value, not the name.
Correct.
I've updated that part of the class. "non-structured variables" now
display in the same format as "structured", right down to the name of
the variable, and even its TYPE! ;)
Give him a few days to update his site to incorporate what I've sent
him.
Walter
Re: best var dump I"ve ever seen!
am 05.11.2007 20:26:43 von otrWalter
On Nov 5, 12:05 pm, "Rik Wasmus" wrote:
>
> Hmm, I'll check it out soon. In the mean while: xdebug also changes the
> var_dump function quite pleasantly.
Yes it does. I took a look at what Xdebug does and decided to "steal"
an idea from what they did. I added the LENGTH a string variable to
the display. Numbers, booleans and NULL didn't need to show their
length.
Walter
Re: best var dump I"ve ever seen!
am 07.11.2007 14:17:28 von NerdRevenge
otrWalter@gmail.com wrote:
>> AFAIK, now if you display a non-structured variable, it only
>> displays the value, not the name.
>
> Correct.
>
> I've updated that part of the class. "non-structured variables" now
> display in the same format as "structured", right down to the name of
> the variable, and even its TYPE! ;)
>
> Give him a few days to update his site to incorporate what I've sent
> him.
>
> Walter
>
Thanks Walter.