Tablename :- userinfo
Column :- expiration [ type:- text ]
Date format :- date('d M Y')
Database :- MySQL
Tech :- Codeigniter 3
表包含用戶的記錄,我想過濾結果到期日期。如何查找活躍用戶和過期用戶,比較Codeigniter中的日期?
Active users :- $exp_date > $cur_date;
Expired users :- $exp_date < $cur_date;
謝謝@Pathik ..都在這裏工作。 –
@VikramSoni welcome –
function getactiveusers(){ $ this-> db-> where('expiration>',date('d M Y')); $ this-> db-> or_where('expiration','Unlimited'); $ query = $ this-> db-> get('userinfo'); return $ query-> result(); } –