How to get Current time in php like 5:00 pm ? I have problem in getting time in php like 5:00 pm because I have to create a decision for example
<?php
$current_time = ("h:i a");
if($current_time > "5:00 pm"){
echo 'Hide';
}else{
echo 'show';
}
?>
I want to show the 'hide' text after 5:00 pm.
anyone knows?
Thanks for the help.
Very Much appreciated.
Use the 24-hour-system and you won't have any problems: if(date('G') > 17)
G 24-hour format of an hour without leading zeros 0 through 23
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With