Skip to content
Advertisement

How to Dynamically Access Objects in PHP

I have two stdClass Object’s that have a number of fields. I cannot change the object layout or structure.

For example, they both have a phone number:

Object A

JavaScript

Object B

JavaScript

I want to dynamically access them with a database entry. In other words, to access ‘phone’ in Object B, it is simply:

JavaScript

And in the database, I would store the field as ‘phone’, assign this value to a variable e.g. $field and the code would be:

JavaScript

The issue arises however if I want to map Object A. To access the phone value, I would need to:

JavaScript

But as I have many fields and many mappings, how do I dynamically set up access to these fields?

Assuming I had a database entry like:

JavaScript

This could be easily translated to:

JavaScript

But what happens in a dynamic or nested case, for example, another field is:

JavaScript

I’m not aware of a way to access this value dynamically. In other words, how can I build access on the fly for a given database entry?

JavaScript

Advertisement

Answer

You can create a function for doing this:

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