var_dump and print_r Not Yet Implemented

Asked

Viewed 188 times

3

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

Example:

print_r($domnode);

Exit:

Not yet implemented

Instead of displaying the data from objeto, was returned this message.

What does that mean?

  • It’s the rascal’s trick?

  • 3

    Here -> https://bugs.php.net/bug.php?id=61858

  • Which version of php you’re using?

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 in these functions will be. Something like a toString intern.


According to a comment on bug report that Bacco found, what would not be implemented would be the method DomAttr->schemaTypeInfo.

  • The classes of Dom are the only ones that return the output "(Ommited content)"

Browser other questions tagged

You are not signed in. Login or sign up in order to post.