-2

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
4

1 に答える 1

0

次を使用して整数として型キャスト できます。$t(int)$t

于 2012-06-12T00:40:34.993 に答える