PHPのdate
関数を使用しています。ステートメントは次のように簡単です
$t= 1339455660;
echo date('l, d F Y H:i:s', $t); // not working
何らかの理由で、上記の関数は空の文字列を返します。
" "
その理由は何ですか?
編集:
$t= 1339455660;
echo date('l, d F Y H:i:s'); // works returns desired result
echo date('l, d F Y H:i:s', $t); // returns " " #wierd