答案 0 :(得分:2)
echo strtotime('+11 years 6 months');
<强> Fiddle 强>
答案 1 :(得分:1)
你可以试试这个:
echo strtotime('+11 years 6 months');
答案 2 :(得分:0)
我提出了适用于我的应用程序的解决方案
$value = 11.5;
$unit = 'year'; //day, second, month,...
$integer = floor($value);
$decimal = $value-$integer;
//get value of full [unit] and at the percentage from the decmail
$delay = strtotime('+'.$integer.' '.$unit, 0)+strtotime('+1 '.$unit, 0)*$decimal