Created
September 16, 2016 16:22
-
-
Save treetop1500/3587a91a6ba036be5252cd11d3dace1d to your computer and use it in GitHub Desktop.
Twig Extensions:twig_extension_price.php
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
/** | |
* @param $amt | |
* @return string | |
* strips out non-numeric characters and adds the +1 country code. | |
*/ | |
function price($amt) | |
{ | |
return '<span class="dollar-sign">$</span>'.number_format($amt,2); | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment