MediaWiki master
LanguageMy.php
Go to the documentation of this file.
1<?php
27class LanguageMy extends Language {
28
33 public function formatNum( $number ) {
34 /* NO-op. Cannot use
35 * $separatorTransformTable = [ ',' => '' ]
36 * That would break when parsing and doing strstr '' => 'foo';
37 */
38 return $this->formatNumNoSeparators( $number );
39 }
40}
Burmese (Myanmasa)
formatNum( $number)
Base class for language-specific code.
Definition Language.php:63
formatNumNoSeparators( $number)
Front-end for non-commafied formatNum.