답변:
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
대한 user_save 페이지의 의견에서 이것을 복사하고 수정 했으므로 100 %가 아닙니다access
. 마지막 액세스 날짜라고 가정 할 것이므로 새로운 사용자 인 경우 설정하지 않아야한다고 생각합니다.