Jump to content

[SOLVED] floor() problem


rascle

Recommended Posts

$times = date("i");
$timeh = date("H");
$times = floor($times);
$time = "$timeh:$times";
$logtime = $time;
$logdate = date("d/m/y");

What i am trying to do is floor the $times so that if you log out at 06.09 it floors it to 06.00. However at the moment it floors it to: 06.9. What should i do?

Thanks

-RascleRhys.com

Link to comment
https://forums.phpfreaks.com/topic/147600-solved-floor-problem/
Share on other sites

On a side note:

 

<?php
$times = (float) date("i");
$times = ($times / 100);
echo $times . "<br />";
$timeh = date("H");
$times = floor($times);
$time = "$timeh:$times";
echo $time;
$logtime = $time;

$logdate = date("d/m/y");
die();
?>

 

That would do what you "wanted" it to do. You just had to divide it by 100 to get it to be in decimal format.

Link to comment
https://forums.phpfreaks.com/topic/147600-solved-floor-problem/#findComment-774868
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.