5

我工作的公司的财政年度从 1 月 1 日开始,如果那是星期四,否则从上一年的最后一个星期四开始。

我编写了一个函数来执行此操作,但需要循环似乎效率低下:

function get_start_of_financial_year() {
    $date = date('Y').'-01-01';
    $correct_day = false;
    while(!$correct_day) {
        $day_num = date('N', strtotime($date));
        if($day_num==4) return $date;
        $date = date('Y-m-d', strtotime($date.' -1 day'));
    }
}

我一直在尝试这样的事情:

function get_start_of_financial_year() {
    $date = date('Y').'-01-01';
    $day_num = date('N', strtotime($date));
    $modifer = 4 - $day_num;
    return date('Y-m-d', strtotime($date.' -'.$modifer.' days'));
}

但是,这不起作用。我知道在计算我的修饰符时我做错了,但是什么?

我在这里查看了其他类似的问题/答案,并且都略有不同,所以我认为这是一个真正的新问题。

4

7 回答 7

6

根据文档

"'last' dayname"取当天的最后一个 dayname。(例如:“2008 年 7 月最后一个星期三”表示“2008 年 6 月 25 日”;“2008 年 7 月”首先将当前日期设置为“2008 年 7 月 1 日”,然后“最后一个星期三”移动到上一个星期三,即“2008 -06-25 英寸)。

所以你的情况是

function get_start_of_financial_year($year) {
    // get the first Thursday before 2 Jan of $year
    return date("Y-m-d", strtotime("last Thursday $year-01-02"));
}

echo get_start_of_financial_year( date("Y") );
于 2013-11-04T17:04:08.143 回答
1

同样有趣的是我为你把这个混在一起

echo date('l jS F (Y-m-d)', strtotime('first thursday january this year'));

试试看然后你可以检查它是否是第一个?

显然你需要正确的格式来检查等

我喜欢这些 PHP 怪癖

于 2013-11-04T16:43:53.100 回答
1
<?php

$date = date("Y")."-01-01";
while(date("l", strtotime($date))!="Thursday")){
    $date = date("Y-m-d", strtotime("-1 day", strtotime($date)));
}
于 2013-11-04T16:48:34.553 回答
0

如果您想使用修饰符方法,请尝试:

  $modifer = ($day_num>3) ? $day_num-4 :  $day_num+3;
于 2013-11-04T16:57:27.377 回答
0

php date 函数实际上提供了很多简单的工具来做到这一点!我建议使用以下代码解决您的问题:

/** 
* Calculate the start of the financial year given a certain year 
* @param year the current year
* @returns the date the current financial year starts
*/
function getStartOffFinancialYear(String year) {
     // Get the timestamp of this years Jan 1st
     $timestamp = strtotime(year+'-01-01');

     // Check what day it is (you will get an integer)
     $day = date('w', $timestamp)

     if($day == 4) {         
         // If it's a thursday, we are done!
         return $timestamp;
     } else {
         // Else we take the previous thursday :)
         return strtotime("last thursday",$timestamp);
     }
}
于 2013-11-04T16:54:20.240 回答
0
<?php
$cur_dt = date('Ymd', mktime(0, 0, 0, date("m")  , date("d"), date("Y")));
//$cur_dt = date('Ymd', mktime(0, 0, 0, 5  , 10, 2013));
//$cur_dt = date('Ymd', mktime(0, 0, 0, 2  , 10, 2013));
$cur_mm="";
$cur_yy="";
$fin_st_dd="";
$fin_st_mm="";
$fin_st_yy="";
$fin_nd_dd="";
$fin_nd_mm="";
$fin_nd_yy="";
$cur_mm= substr(trim($cur_dt),4,2);
$cur_yy= substr(trim($cur_dt),0,4);


if ( $cur_mm >= "04" && $cur_mm <= "12" )
{
    $fin_st_dd="01";
    $fin_st_mm="04";
    $fin_st_yy=$cur_yy;
    $fin_nd_dd="31";
    $fin_nd_mm="03";
    $fin_nd_yy=$cur_yy+1;
}

if ($cur_mm >= "01" && $cur_mm <= "03")
{
    $fin_st_dd="01";
    $fin_st_mm="04";
    $fin_st_yy=$cur_yy-1;
    $fin_nd_dd="31";
    $fin_nd_mm="03";
    $fin_nd_yy=$cur_yy;
}

$fin_st = date('Ymd', mktime(0, 0, 0, $fin_st_mm , $fin_st_dd, $fin_st_yy));
$fin_nd = date('Ymd', mktime(0, 0, 0, $fin_nd_mm , $fin_nd_dd, $fin_nd_yy));


echo "\nCurrent Date: $cur_dt\n";
echo "\nFinancial Year From : $fin_st To : $fin_nd\n";
//echo "\n$fin_nd\n";
//echo "\n$fin_st_mm";
//echo "\n$fin_st_yy\n";
//echo "\n$fin_st_mm";
//echo "\n$fin_nd_mm";
//echo "\n$fin_nd_yy\n";

?>
于 2014-05-23T10:53:09.987 回答
0

有一个对我有用的答案,我在这里找到了:get the last thursday before a date in PHP

function get_start_of_financial_year() {
$date = strtotime('2014-01-01');
if(date('N',$date) != 4)
    return date('Y-m-d', strtotime("last thursday",$date));
else
    return $date;
}

echo get_start_of_financial_year();
于 2013-11-04T17:25:28.493 回答