Skip to content
Advertisement

Call private methods and private properties from outside a class in PHP

I want to access private methods and variables from outside the classes in very rare specific cases.

I’ve seen that this is not be possible although introspection is used.

The specific case is the next one:

I would like to have something like this:

JavaScript

This method should be able to be injected in the code like this:

JavaScript

(this is just one simplification. the real one goes through a socket, and implement a bunch of more things…)

So…

If you instantiate the class Demo and you call $demo->myMethod(), you’ll get a console: that console can access the first method writing a command like:

JavaScript

But you cannot run successfully the second one:

JavaScript

Do any of you have any idea, or if there is any library for PHP that allows you to do this?

Thanks a lot!

Advertisement

Answer

Just make the method public. But if you want to get tricky you can try this (PHP 5.3):

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement