strtotime
を使用できます
日付の文字列表現をタイムスタンプに変換するには、date
タイムスタンプを好きな形式に変換するには:
$timestamp = strtotime($frmdate);
$formatted_date = date("j M. Y", $timestamp);
次のコマンドを使用して、翻訳をyyyy-mm-dd形式からタイムスタンプに移動してクエリ自体に入れることもできます。
select unix_timestamp(field_name) as field_name_timestamp