Answers for "convert time string to seconds in php"

PHP
3

seconds to minutes php

echo gmdate("H:i:s", 685);
Posted by: Guest on August-04-2020
0

php date to seconds

<?php
$str = 'Tue Dec 15 2009';
$timestamp = strtotime($str);
echo $timestamp;
//output: 1260831600
?>
Posted by: Guest on May-23-2020

Code answers related to "convert time string to seconds in php"

Browse Popular Code Answers by Language