blob: 0b21b2274188e4a93f4471490a9e98273919e36f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--TEST--
Checking whisky time
--FILE--
<?php
date_default_timezone_set('UTC');
var_dump(date('H:i:s', strtotime('back of 7')));
var_dump(date('H:i:s', strtotime('front of 7')));
var_dump(date('H:i:s', strtotime('back of 19')));
var_dump(date('H:i:s', strtotime('front of 19')));
?>
--EXPECTF--
%string|unicode%(8) "07:15:00"
%string|unicode%(8) "06:45:00"
%string|unicode%(8) "19:15:00"
%string|unicode%(8) "18:45:00"
|