HI हिन्दी
版本: v2.3.0

count

किसी तालिका में मिलती-जुलती पंक्तियाँ गिनें।

count($table, $where)
count($table, $join, $column, $where)
रिटर्न वैल्यू
[int] मेल खाने वाली पंक्तियों की संख्या।
यह विधि हमेशा एक पूर्णांक लौटाती है।
$count = $database->count("account", [
	"gender" => "female"
]);

echo "हमारे पास {$count} महिला उपयोगकर्ता हैं।";