Sorry, newbie here, but anyway,
I am trying to use the Google Data API to work with some Google tables, and I am trying to use var_dump to view the structure of the objects that I get from API calls. I tried using var_dump, but that did not give me what I expect. Most of the properties that he shows me appear as protected as follows:
... ["_entryClassName:protected"] ...
and I tried to look at examples of how the properties of objects will be executed, and for the properties that I can get using the property access operator (->), I donβt even see them in the var_dump output.
So, I'm really confused, and I was wondering, how do I better find out which public properties and methods of my class instance and how many of them are?
Thanks for any help in advance.
object reflection debugging oop php
racl101
source share