dgruetter Posted January 24, 2012 Share Posted January 24, 2012 I am trying to write a more elegant solution to be able to check an object, find only the properties in an object that have values, and update those values in a database with a matching ID. I am extending a class from a generic user class here is an example of my code <?php require_once('User.php'); require_once('Database.php'); class Vendor extends User { protected static $vendor_attributes = array('id', 'nothing' , 'tagline' , 'bio'); protected static $table_name = "user_vendors"; public $tagline; }//close class ?> Link to comment https://forums.phpfreaks.com/topic/255695-building-an-attributes-function-without-late-static-binding/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.