Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

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 140 views
1 answer 104 views
2 answers 161 views
2 answers 108 views
2 answers 113 views
...