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



    Login to add Comments .