Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
恐れ入りますが、このための機能が見つかりませんか?私がすることができます
echo date("Y-m-d g:i:s a", 1333442414662) . "\n";
しかし、関数から時間を変換する関数が見つかりません
date("Y-m-d H:i:s", time());
UNIXタイムスタンプに
strtotime?http://php.net/manual/en/function.strtotime.php
これは簡単です。
$yourdate =date("Y-m-d H:i:s", time()); strtotime($yourdate);