Skip to content

Instantly share code, notes, and snippets.

@kellenmace
Created March 29, 2020 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kellenmace/6d5533ca07f770bae38c740bf1046a93 to your computer and use it in GitHub Desktop.
Save kellenmace/6d5533ca07f770bae38c740bf1046a93 to your computer and use it in GitHub Desktop.
<?php
/**
* @param int $user_id User ID.
*
* @return bool Whether the user exists.
*/
function does_user_exist( int $user_id ) : bool {
return (bool) get_users( [ 'include' => $user_id, 'fields' => 'ID' ] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment