I'm sort of experimenting with very obscure data models in php. For example, if I have a table called "model_attributes" in an SQL database. This is a list of all the available attributes for the model I'm working on. Now, I want the model, and other models to be able to derive functions from this list to pull data out of an array, after the data has been loaded into the array from the constructor. Here is an example in pseudo-code:
for each attributes as attribute
create new function ( getAttributeName )
and
getAttributeName()
would
return $this->_model_data['attribute_name']
First off, is this good practice? It seems organized, but at the same time seems kind of dirty. Maybe someone could give me some other suggestions as to how to handle large data models in php.
Also, if anyone has done something like this, how could I handle this in phpDocs?
You will not be able to do this easily at runtime with PHP.
You may use an existing ORM, for example Doctrine or Propel.
Or you could pre-generate the model class files, or use magic methods.
Quick example:
__call
is a magic method that gets called when the method does not exists. So, callinggetAttributeName
on an instance of the class would call__call
with the stringgetAttributeName
as first argument.