UserModel::countEstimate PHP Method

countEstimate() public method

Approximate the number of users by checking the database table status.
public countEstimate ( ) : integer
return integer
    public function countEstimate()
    {
        $px = Gdn::database()->DatabasePrefix;
        return Gdn::database()->query("show table status like '{$px}User'")->value('Rows', 0);
    }
UserModel