как лучше и правильнее написать?
function __clone()
{
$this->__construct("Guest", "guest", "qwerty");
}или
function __clone()
{
$this->_name = "Guest";
$this->_login = "guest";
$this->_password = "qwerty";
} как лучше и правильнее написать?
function __clone()
{
$this->__construct("Guest", "guest", "qwerty");
}function __clone()
{
$this->_name = "Guest";
$this->_login = "guest";
$this->_password = "qwerty";
}