Skip to content

Instantly share code, notes, and snippets.

@Remo
Created September 1, 2014 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Remo/5f3bae9e88533de439c9 to your computer and use it in GitHub Desktop.
Save Remo/5f3bae9e88533de439c9 to your computer and use it in GitHub Desktop.
Punic Demo
<?php
use \Punic\Unit;
include 'vendor/autoload.php';
// This will output `2 Millisekunden`
echo Unit::format(2, 'millisecond', 'long', 'de');
// This will output `2 ms`
echo Unit::format(2, 'millisecond', 'short', 'en');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment