How to extract hours, minutes and second from string in PHP

2 Answers

0 votes
$str = "11:58:35";
$time_parts = array();

$pos = 0;

while (($pos = strpos($str, ":", $pos)) != false) {
    array_push($time_parts, substr($str, 0, $pos - 0));
    $str = substr($str, $pos + 1);
}

array_push($time_parts, $str); // Add the seconds

if (count($time_parts) != 3) {
    echo "Invalid time format\n";
}
        
$hours = intval($time_parts[0]);
$minutes = intval($time_parts[1]);
$seconds = intval($time_parts[2]);

echo $hours . ":" . $minutes . ":" . $seconds;




/*
run:
 
11:58:35
 
*/

 



answered Dec 27, 2023 by avibootz
0 votes
$str = "11:58:35";
$arr = explode(":",$str);

$hours = intval(trim($arr[0]));
$minutes = intval(trim($arr[1]));
$seconds = intval(trim($arr[2]));

echo $hours . ":" . $minutes . ":" . $seconds;




/*
run:

11:58:35

*/

 



answered Dec 28, 2023 by avibootz

Related questions

1 answer 168 views
1 answer 126 views
2 answers 196 views
2 answers 147 views
2 answers 147 views
...