我有一个users
在我的 MySQL 数据库中命名的表。此表中有一个列名user_reg_date(bigint(12))
,用于存储该用户的注册日期。
此列以 UNIX Timestamp 格式存储注册日期。我是 PHP 中这个 UNIX 时间戳和日期操作的新手。现在我的要求是我想将当前日期传递给一个函数并获取注册日期为当前日期的用户数(即今天注册的用户数)。
我不知道如何将当前日期传递给函数并获取注册日期为当前日期的用户数。我在下面给出我的 PHP 函数代码。
/*The argument `$todays_date` I'm passing is dummy, please guide me how to pass the date also*/
function GetRegisteredUsersCount($todays_date) {
$sql = " SELECT count(*) as registered_users_count FROM ".TBL_USERS;
$sql .= " WHERE user_reg_date ='".$todays_date."' ";
$this->mDb->Query( $sql);
$data = $this->mDb->FetchArray(MYSQL_FETCH_SINGLE);
return $data;
}