Suppose you store instances of a class in a relational table. How would you go about persisting a static attribute of that class? For example:
class WebSiteUser {
private static $common_homepage_content;
private $username;
private $password_hash;
...
}
Corresponding to:
CREATE TABLE web_site_users
(
username character varying(100) NOT NULL,
password_hash character varying(40) NOT NULL,
...
Where does $common_homepage_content
go then?