Say we have a player model, and every field in playerstable is prepended with player_. For example, player_username, player_email, etc.
I'm personally not used to this database design, but I know plenty of people use it. When I work on projects that have this, I'm not particularly found of having to write:
$p = new Player;
echo $p->player_username;
I'd rather ditch the prepended part in all my PHP code.
echo $p->username;
