Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alphp/strftime

This provides a cross-platform alternative to strftime() for when it will be removed from PHP
https://github.com/alphp/strftime

backward-compatibility php php-81 strftime

Last synced: about 22 hours ago
JSON representation

This provides a cross-platform alternative to strftime() for when it will be removed from PHP

Awesome Lists containing this project

README

        

[![GitHub Workflow](https://github.com/alphp/strftime/actions/workflows/php.yml/badge.svg)](https://github.com/alphp/strftime/actions/workflows/php.yml)
[![GitHub license](https://img.shields.io/github/license/alphp/strftime)](https://github.com/alphp/strftime/blob/master/LICENSE)
[![GitHub release](https://img.shields.io/github/release/alphp/strftime)](https://github.com/alphp/strftime/releases)
[![Packagist](https://img.shields.io/packagist/v/php81_bc/strftime)](https://packagist.org/packages/php81_bc/strftime)
[![Packagist Downloads](https://img.shields.io/packagist/dt/php81_bc/strftime)](https://packagist.org/packages/php81_bc/strftime/stats)
[![GitHub issues](https://img.shields.io/github/issues/alphp/strftime)](https://github.com/alphp/strftime/issues)
[![GitHub forks](https://img.shields.io/github/forks/alphp/strftime)](https://github.com/alphp/strftime/network)
[![GitHub stars](https://img.shields.io/github/stars/alphp/strftime)](https://github.com/alphp/strftime/stargazers)

# strftime
Locale-formatted strftime using IntlDateFormatter (PHP 8.1 compatible)

This provides a cross-platform alternative to strftime() for when it will be removed from PHP.

Note that output can be slightly different between libc sprintf and this function as it is using ICU.

Original code: https://gist.github.com/bohwaz/42fc223031e2b2dd2585aab159a20f30

Original autor: [BohwaZ](https://bohwaz.net/)

# Table of contents
- [Requirements](#requirements)
- [Installation](#installation)
- [Composer install](#composer-install)
- [Manual install](#manual-install)
- [Usage](#usage)
- [Original use](#original-use)
- [Formats](#formats)
- [Day](#day)
- [Week](#week)
- [Month](#month)
- [Year](#year)
- [Time](#time)
- [Time and Date Stamps](#time-and-date-stamps)
- [Miscellaneous](#miscellaneous)

## Requirements
- PHP >= 7.1.0
- ext-intl ([Internationalization extension ICU](https://www.php.net/manual/en/book.intl.php))

[TOC](#table-of-contents)

## Installation

### Composer install
You can install this plugin into your application using [composer](https://getcomposer.org):

- Add php81_bc/strftime package to your project:
```bash
composer require php81_bc/strftime
```

- Load the function PHP81_BC\strftime in your project
```php