以下の内容はhttps://iww.hateblo.jp/entry/20230910/strtotimeより取得しました。


strtotime()はYYYYMMDDhhmmssを理解する

PHPのstrtotime()は日付っぽい文字列を入れるとUNIXTIMEにしてくれる便利な関数
PHP: strtotime - Manual

理解してくれる書式はここにまとまっている
www.php.net
書いてないけど YYYYMMDDhhmmss な形式の文字列もセーフ

<?
$a = time();
$b = date('YmdHis',$a);
$c = strtotime($b);
 
print("$a\n");  // 1694310512
print("$b\n");  // 20230910014832
print("$c\n");  // 1694310512



以上の内容はhttps://iww.hateblo.jp/entry/20230910/strtotimeより取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14