Is there any core function to get uid from username in Drupal? Or I should perform a db query? my field is a textfield with '#autocomplete_path' equal to 'user/autocomplete'
9
votes
5 Answers
11
votes
You can use the user_load function. See http://api.drupal.org/api/function/user_load/6
In particular see http://api.drupal.org/api/function/user_load/6#comment-6439
So you would do something like this:
// $name is the user name
$account = user_load(array('name' => check_plain($name)));
// uid is now available as $account->uid
10
votes
Somehow I couldn't make the query work but I found this:
$user = user_load_by_name($username);
$user_id = $user->uid;
see: http://api.drupal.org/api/drupal/modules%21user%21user.module/function/user_load_by_name/7
5
votes
The user load function is very heavy, would use up more resources and return more data than required, Here is a nice little function for you:
function get_uid($username)
{
// Function that returns the uid based on the username given
$user = db_fetch_object(db_query("SELECT uid FROM users WHERE name=':username'", array(":username" => $username)));
return $user->uid;
}
Note: This code is revised and input is escaped, so the code is not dangerous in any way.
2
votes