Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. DateHelper.php

function DateHelper::daysInYear

Identifies the number of days in a year for a date.

Parameters

mixed $date: (optional) A DrupalDateTime object or a date string. Defaults to NULL, which means to use the current date.

Return value

int|null The number of days in the year, or null if the $date has errors.

File

core/lib/Drupal/Core/Datetime/DateHelper.php, line 477

Class

DateHelper
Defines Gregorian Calendar date values.

Namespace

Drupal\Core\Datetime

Code

public static function daysInYear($date = NULL) {
    $date = $date ?? 'now';
    if (!$date instanceof DrupalDateTime) {
        $date = new DrupalDateTime($date);
    }
    if (!$date->hasErrors()) {
        if ($date->format('L')) {
            return 366;
        }
        else {
            return 365;
        }
    }
    return NULL;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal