01-25-2008, 07:52 AM
|
#8 (permalink)
|
|
The Frequenter
Join Date: Dec 2007
Location: Bucharest, Romania
Posts: 438
Thanks: 3
|
quick example:
PHP Code:
namespace DB_MySQL { class DB { ... } }
namespace DB_Postgre { class DB { ... } }
and some sort of usage:
PHP Code:
if( driver == 'postgre' ) use namespace DB_Postgre; else use namespace DB_MySQL;
$db = new DB(); [more stuff]
This is just a prototype of what can be done.
__________________
I have optimistic thoughts, even though sometimes (if not always) life's a bitch.
|
|
|
|