### count
獲取數據表中的行數
count($table, $where)
* ##### table [string]
表名.
* ##### where (optional) [array]
WHERE 條件.
count($table, $join, $column, $where)
* ##### table [string]
表名.
* ##### join [array]
多表查詢.
* ##### column [string]
需要統計的字段.
* ##### where (optional) [array]
WHERE 條件.
Return: [number] 行的數量.
>返回的是數字類型.
~~~
$count = $database->count("account", [
"gender" => "female"
]);
echo "We have " . $count . " female users.";
~~~