Kimai_Database_Mysql::user_name2id PHP 메소드

user_name2id() 공개 메소드

return ID of specific user by name
저자: th
public user_name2id ( integer $name ) : string | boolean
$name integer name of user in table users
리턴 string | boolean
    public function user_name2id($name)
    {
        return $this->name2id($this->kga['server_prefix'] . 'users', 'userID', 'name', $name);
    }
Kimai_Database_Mysql