Convert Timestamp value to Time - PHP Views : 160
Tagged in : PHP
0 0
Send mail
Convert Timestamp value to Time
Use the below code to convert timestamp value to time
<?php
$dt=1284070411;
echo date("h:i:s",$dt);
?>
By Nirmala, On - 2010-09-10



    Login to add Comments .