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