1[![GitHub Workflow](https://github.com/alphp/strftime/actions/workflows/php.yml/badge.svg)](https://github.com/alphp/strftime/actions/workflows/php.yml) 2[![GitHub license](https://img.shields.io/github/license/alphp/strftime)](https://github.com/alphp/strftime/blob/master/LICENSE) 3[![GitHub release](https://img.shields.io/github/release/alphp/strftime)](https://github.com/alphp/strftime/releases) 4[![Packagist](https://img.shields.io/packagist/v/php81_bc/strftime)](https://packagist.org/packages/php81_bc/strftime) 5[![Packagist Downloads](https://img.shields.io/packagist/dt/php81_bc/strftime)](https://packagist.org/packages/php81_bc/strftime/stats) 6[![GitHub issues](https://img.shields.io/github/issues/alphp/strftime)](https://github.com/alphp/strftime/issues) 7[![GitHub forks](https://img.shields.io/github/forks/alphp/strftime)](https://github.com/alphp/strftime/network) 8[![GitHub stars](https://img.shields.io/github/stars/alphp/strftime)](https://github.com/alphp/strftime/stargazers) 9 10# strftime 11Locale-formatted strftime using IntlDateFormatter (PHP 8.1 compatible) 12 13This provides a cross-platform alternative to strftime() for when it will be removed from PHP. 14 15Note that output can be slightly different between libc sprintf and this function as it is using ICU. 16 17Original code: https://gist.github.com/bohwaz/42fc223031e2b2dd2585aab159a20f30 18 19Original autor: [BohwaZ](https://bohwaz.net/) 20 21# Table of contents 22- [Requirements](#requirements) 23- [Installation](#installation) 24 - [Composer install](#composer-install) 25 - [Manual install](#manual-install) 26- [Usage](#usage) 27 - [Original use](#original-use) 28- [Formats](#formats) 29 - [Day](#day) 30 - [Week](#week) 31 - [Month](#month) 32 - [Year](#year) 33 - [Time](#time) 34 - [Time and Date Stamps](#time-and-date-stamps) 35 - [Miscellaneous](#miscellaneous) 36 37## Requirements 38- PHP >= 7.1.0 39- ext-intl ([Internationalization extension ICU](https://www.php.net/manual/en/book.intl.php)) 40 41[TOC](#table-of-contents) 42 43## Installation 44 45### Composer install 46You can install this plugin into your application using [composer](https://getcomposer.org): 47 48- Add php81_bc/strftime package to your project: 49 ```bash 50 composer require php81_bc/strftime 51 ``` 52 53- Load the function PHP81_BC\strftime in your project 54 ```php 55 <?php 56 require 'vendor/autoload.php'; 57 use function PHP81_BC\strftime; 58 ``` 59 60[TOC](#table-of-contents) 61 62### Manual install 63- Download [php-8.1-strftime.php](https://github.com/alphp/strftime/raw/master/src/php-8.1-strftime.php) and save it to an accessible path of your project. 64- Load the function PHP81_BC\strftime in your project 65 ```php 66 <?php 67 require 'php-8.1-strftime.php'; 68 use function PHP81_BC\strftime; 69 ``` 70 71[TOC](#table-of-contents) 72 73## Usage 74```php 75 use function PHP81_BC\strftime; 76 echo strftime('%A %e %B %Y %X', new \DateTime('2021-09-28 00:00:00'), 'fr_FR'); 77``` 78 79[TOC](#table-of-contents) 80 81### Original use 82```php 83 \setlocale(LC_TIME, 'fr_FR.UTF-8'); 84 echo \strftime('%A %e %B %Y %X', strtotime('2021-09-28 00:00:00')); 85``` 86 87[TOC](#table-of-contents) 88 89## Formats 90 91### Day 92| Format | Description | Example returned values | 93|:------:|--------------------------------------------------------|-------------------------------------------------| 94| `%a` | An abbreviated textual representation of the day | `Sun` through `Sat` | 95| `%A` | A full textual representation of the day | `Sunday` through `Saturday` | 96| `%d` | Two-digit day of the month (with leading zeros) | `01` to `31` | 97| `%e` | Day of the month, with a space preceding single digits | `' 1'` to `'31'` | 98| `%j` | Day of the year, 3 digits with leading zeros | `001` to `366` | 99| `%u` | ISO-8601 numeric representation of the day of the week | `1` (for `Monday`) through `7` (for `Sunday`) | 100| `%w` | Numeric representation of the day of the week | `0` (for `Sunday`) through `6` (for `Saturday`) | 101 102[TOC](#table-of-contents) 103### Week 104| Format | Description | Example returned values | 105|:------:|--------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------| 106| `%U` | Week number of the given year, starting with the first Sunday as the first week | `13` (for the `13th full week of the year`) | 107| `%V` | ISO-8601:1988 week number of the given year, starting withthe first week of the year with at least 4 weekdays, with Monday being the start of the week | `01` through `53` (where 53 accounts for an overlapping week) | 108| `%W` | A numeric representation of the week of the year, starting with the first Monday as the first week | `46` (for the `46th week of the year` beginning with a Monday) | 109 110**NOTE**: All week formats are two-digit, with leading zeros. 111 112[TOC](#table-of-contents) 113### Month 114| Format | Description | Example returned values | 115|:------:|----------------------------------------------------------------|----------------------------------------------------| 116| `%b` | Abbreviated month name, based on the locale | `Jan` through `Dec` | 117| `%B` | Full month name, based on the locale | `January` through `December` | 118| `%h` | Abbreviated month name, based on the locale (an alias of `%b`) | `Jan` through `Dec` | 119| `%m` | Two digit representation of the month | `01` (for `January`) through `12` (for `December`) | 120 121[TOC](#table-of-contents) 122### Year 123| Format | Description | Example returned values | 124|:------:|----------------------------------------------------------------------------------------|-------------------------------------------------| 125| `%C` | Two digit representation of the century (year divided by 100, truncated to an integer) | `19` for the `20th Century` | 126| `%g` | Two digit representation of the year going by ISO-8601:1988 standards (see `%V`) | Example: `09` for the week of `January 6, 2009` | 127| `%G` | The full four-digit version of `%g` | Example: `2009` for the `January 3, 2009` | 128| `%y` | Two digit representation of the year | Example: `09` for `2009`, `79` for `1979` | 129| `%Y` | Four digit representation for the year | Example: `2038` | 130 131[TOC](#table-of-contents) 132### Time 133| Format | Description | Example returned values | 134|:------:|-------------------------------------------------------------------------------|--------------------------------------------------------| 135| `%H` | Two digit representation of the hour in 24-hour format | `00` through `23` | 136| `%k` | Hour in 24-hour format, with a space preceding single digits | `' 0'` through `'23'` | 137| `%I` | Two digit representation of the hour in 12-hour format | `01` through `12` | 138| `%l` | (lower-case 'L') Hour in 12-hour format, with a space preceding single digits | `' 1'` through `'12'` | 139| `%M` | Two digit representation of the minute | `00` through `59` | 140| `%p` | UPPER-CASE '`AM`' or '`PM`' based on the given time | Example: `AM` for `00:31`, `PM` for `22:23` | 141| `%P` | lower-case '`am`' or '`pm`' based on the given time | Example: `am` for `00:31`, `pm` for `22:23` | 142| `%r` | Same as "`%I:%M:%S %p`" | Example: `09:34:17 PM` for `21:34:17` | 143| `%R` | Same as "`%H:%M`" | Example: `00:35` for `12:35 AM`, `16:44` for `4:44 PM` | 144| `%S` | Two digit representation of the second | `00` through `59` | 145| `%T` | Same as "`%H:%M:%S`" | Example: `21:34:17` for `09:34:17 PM` | 146| `%X` | Preferred time representation based on locale, without the date | Example: `03:59:16` or `15:59:16` | 147| `%z` | The time zone offset | Example: `-0500` for `US Eastern Time` | 148| `%Z` | The time zone abbreviation | Example: `EST` for `Eastern Time` | 149 150[TOC](#table-of-contents) 151### Time and Date Stamps 152| Format | Description | Example returned values | 153|:------:|-----------------------------------------------------------------|--------------------------------------------------------------------------| 154| `%c` | Preferred date and time stamp based on locale | Example: `Tue Feb 5 00:45:10 2009` for `February 5, 2009 at 12:45:10 AM` | 155| `%D` | Same as "`%m/%d/%y`" | Example: `02/05/09` for `February 5, 2009` | 156| `%F` | Same as "`%Y-%m-%d`" (commonly used in database datestamps) | Example: `2009-02-05` for `February 5, 2009` | 157| `%s` | Unix Epoch Time timestamp (same as the `time()` function) | Example: `305815200` for `September 10, 1979 08:40:00 AM` | 158| `%x` | Preferred date representation based on locale, without the time | Example: `02/05/09` for `February 5, 2009` | 159 160[TOC](#table-of-contents) 161### Miscellaneous 162| Format | Description | 163|:------:|--------------------------------------| 164| `%n` | A newline character ("\n") | 165| `%t` | A Tab character ("\t") | 166| `%%` | A literal percentage character ("%") | 167 168[TOC](#table-of-contents) 169