[ create a new paste ] login | about

Link: http://codepad.org/gNdm4YIy    [ raw code | output | fork ]

PHP, pasted on Dec 5:
1
2
3
4
5
6
7
8
9
10
11
12
<?php
$time=strtotime('18:30:00');

echo $time."\n";

echo date("g:i a",$time);

$time=strtotime('6:30 pm');
echo "\n\n".$time."\n";

echo date("H:i:s",$time);
?>


Output:
1
2
3
4
5
1354732200
6:30 pm

1354732200
18:30:00


Create a new paste based on this one


Comments: