Skip to content
Advertisement

PHP – Accessing a object property from dynamic variable

I’m looking for accessing a property of a object property of an object like this :

JavaScript

I tried a lot of things, but none seems work.

Thanks

Advertisement

Answer

I don’t think you can make multiple dereferences this way. You’ll be looking for a variable in $object called user->name. Instead, you can split by -> and then make multiple calls, something like:

JavaScript

Sample Code

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