Created
September 1, 2014 13:20
-
-
Save Remo/5f3bae9e88533de439c9 to your computer and use it in GitHub Desktop.
Punic Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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