我想把这一天带回到每年的每个回合的开始。 如何将Geogrian Date转换为Julian Day? 例如:
我有日期变量' 2018-04-01';
我想获得价值' 91&#39 ;;
您可以全天查看here
答案 0 :(得分:0)
这将获得您需要的信息:
$info = getdate(strtotime('2018-04-01'));
echo $info['yday'] + 1; // have to add 1 as PHP numbers days of the year starting at 0