MediaWiki REL1_37
LanguageMy.php
Go to the documentation of this file.
1<?php
30class LanguageMy extends Language {
31
37 public function formatNum( $number, $noSeparators = null ) {
38 /* NO-op. Cannot use
39 * $separatorTransformTable = [ ',' => '' ]
40 * That would break when parsing and doing strstr '' => 'foo';
41 */
42 return $this->formatNumNoSeparators( $number );
43 }
44}
Burmese (Myanmasa)
formatNum( $number, $noSeparators=null)
Internationalisation code See https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation for more...
Definition Language.php:42
formatNumNoSeparators( $number)
Front-end for non-commafied formatNum.