Просмотр поста

.
No-Tactic

как лучше и правильнее написать?

function __clone()
 {
 
 $this->__construct("Guest", "guest", "qwerty");
 
 }


или
function __clone()
 {
 
 $this->_name = "Guest";
$this->_login = "guest";
$this->_password = "qwerty";
 
 }