Get the User ID Who Owns a Given Blog ID in Multisite

I know this is old, but this is the best way. Might help people coming here in the future.


$get_users = get_users( array( 'blog_id' => get_current_blog_id() ) );
$user_id = $get_users[0]->ID;