var_dump and print_r Not Yet Implemented

3

I was debugging an instance of DOMAttr with var_dump and print_r and the following error occurred:

Example:

print_r($domnode);

Output:

Not yet implemented

Instead of displaying data from objeto , that message was returned to me.

What does this mean?

    
asked by anonymous 10.11.2015 / 15:28

1 answer

4

I think that this means that the object in question does not implement a supposed internal method that determines how the output of this type of object will be in those functions. Something like% internal%.

According to a comment in the bug report that Bacco found , what would not be implemented would be the method toString .

    
10.11.2015 / 15:31