You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of PHP 5.6, you can actually over-ride the behaviour of var_dump et al by defining the __debugInfo magic method, so I plan to rewrite this library on that basis.
If I can get a satisfactory format there, I will then try to implement it in PHP itself, so that the library becomes redundant.
very nice
It would be nice if its output was more matched to var_dump
datatype(length) value
for examplestring(5) "item1"
as opposed to
(string) 'item1' (5 chars)
also if you pass a custom class to it, it is not reflected in output
The text was updated successfully, but these errors were encountered: