PHP获取全年工作日

发布时间:2023年12月27日
<?php

/**
 * @description=> 工作日
 */
class WorkingDay
{
   
    /**
     * @description=> 特殊日期,节假日,调休日
     * @var array
     */
    private $_specialDay = [];
	
	/**
	 * https://timor.tech/api/holiday/year/2020/ 指定年份
	 * @var string
	 */
    public $yearAPI = 'http://timor.tech/api/holiday/year';
    
    public function __construct()
    {
   
        // 获取假期及调休
        $yearJson = file_get_contents($this->yearAPI);
        $yearJson = json_decode($yearJson, 1);
        $year     = date('Y');
        foreach ($yearJson['holiday'] as $v) {
   
            $this->_specialDay[$year][$v['date']] = (int) !$v['holiday'
文章来源:https://blog.csdn.net/xu704742366/article/details/135239387
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。