Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
登録済みのユーザー データを含むメールを送信するカスタム モジュールを作成しました。利用custom_user_register_submitしましたが、登録したユーザーIDが取得できません。関数でユーザーIDを取得する方法はありますか?
custom_user_register_submit
機能を使用できますuser_load。
user_load
ユーザーのログイン名 (例: "example_user") はご存知だと思います。その場合、次のコードを使用できます。
$user_name = "example_user"; $account = user_load(array("name" => $user_name)); $user_id = $account->uid;