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

https://github.com/ctrlcctrlv/phpdate.js

Use PHP date() formats in JavaScript
https://github.com/ctrlcctrlv/phpdate.js

Last synced: over 1 year ago
JSON representation

Use PHP date() formats in JavaScript

Awesome Lists containing this project

README

          

This small library allows you to use PHP date() format strings in JavaScript cleanly.

My use case was so that the user configured date format in Tinyboard would be shared by JavaScript components of the same.

Usage example (assuming JavaScript-C as the interpreter):

d = new Date(2014, 0, 21, 2, 3, 4);
print(date(d,'M/d/Y h:i:s (U)'))
print(date(d,'r'));