robertbasic/weeksinayear

Calculates the number of ISO weeks in a given year

1.0.0 2018-03-17 18:06 UTC

This package is auto-updated.

Last update: 2024-05-12 03:12:05 UTC


README

This small library calculates how many ISO weeks are there in a given year.

Install

composer require robertbasic/weeksinayear

Usage

<?php

use RobertBasic\WeaksInAYear\ISOWeeksInAYear;

$year = 2018;

$weeks = ISOWeeksInAYear::calculate($year);

echo $weeks; // 52