Skip to content
Advertisement

PDO json_decode before fetch into class

Is there a way to json parse string before making it a class with PDO? I don’t like using union types.

In the example below contact is of type json in the database.

PDO

JavaScript

User class

JavaScript

Advertisement

Answer

As Movahhedi suggested you could use PDO::FETCH_FUNC, but the json_decode() should take place in the passed function, not in the constructor. My suggestion would be to create a UserFactory class with a method like createFromDbRow(), although just defining it as a bare function would work just as well too, of course:

JavaScript

Since the User properties are all public I left out a constructor, but you could of course define a constructor as well:

JavaScript

…and then create the Users in UserFactory::createFromDbRow() by utilizing the constructor:

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