回答:
user_save
Drupal機能を使用すると、次のような新しいユーザーを作成できます。
$new_user = array(
'name' => 'JohnDoe',
'mail' => 'john.doe@email.com',
'pass' => 'password123',
'status' => 1,
'field_custom_first_name' => array(LANGUAGE_NONE => array(array('value' => 'John'))), // This becomes $account->field_custom_first_name[LANGUAGE_NONE][0]['value']
'field_custom_last_name' => array(LANGUAGE_NONE => array(array('value' => 'Doe'))),
'access' => REQUEST_TIME,
'roles' => array(), // No other roles than Authenticated
//'roles' => array('10' => '10', '11' => '11'), // If you want to specify additional roles, the numbers are role_id's
);
user_save(NULL, $new_user);
access
ない。doのuser_saveページのコメントからこれをコピーして修正したので、何をするのか100%でaccess
はない。最終アクセス日であると想定するため、新しいユーザーの場合は設定しないでください。