2017 © Pedro Peláez
 

project locamon

Simple class allow you to localize month names and other

image

efiku/locamon

Simple class allow you to localize month names and other

  • Thursday, April 7, 2016
  • by efiku
  • Repository
  • 1 Watchers
  • 1 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

LocaMon project

Build Status, (*1)

LocaMon is class which allow you to simple convert time into localized names. For example month numbers into names., (*2)

   $locaMon = new LocaMon();
   $monthNumber = 3;
   $timestamp = mktime(0,0,0,$monthNumber);

   $locaMon
    ->setLocale('pl_PL')
    ->setFormat('LLLL')
    ->setData($timestamp);

    echo $locaMon->getResult(); // marzec 

About format: datetime, (*3)

The Versions

07/04 2016

dev-master

9999999-dev

Simple class allow you to localize month names and other

  Sources   Download

MIT

The Requires

  • ext-intl ^1.1
  • php >= 5.5

 

The Development Requires

by Krzysztof Pazdur