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.
変換方法
$time = "31-08-2013T14:00";
に
$time = "Sa, 14:00" #sa for saturday
私は次のことを試しました:
$time = date("D H:i", $time);
しかし、これは機能しません。誰でも私を助けることができますか?
試してみてくださいstrtotime
strtotime
$time = date("D H:i", strtotime($time));
$timeを文字列に変換する必要があります
$time