Reply to Re: Why there's no namespace keyword in php5?
Posted by Yarco on 10/18/05 09:10
So...there might be:
$db = Tony_db::getInst(Tony_db::MYSQL);
vs
using namespace Tony;
$db = db::getInst(db::MYSQL);
And when using namespace myself, i can only change the namespace "Tony"
to "Yarco".
But when change class, i should do it line by line, or using some
automatic modifier.