Was wondering if it's possible to have a variable point to another variable in PHP? What I'm trying to do is to have a class instance like:
$users = new User_Model();
and then have
$user
simply point to
$users
instead of making a new class instance. Is this possible? Think I saw something about it in the php manual, but cant find it again.
Would
$users = new User_Model();
$user = $users;
simply do it?
Thanks