00001 <?php 00008 class LanguageKm extends Language { 00009 function commafy($_) { 00010 /* NO-op for Khmer. Cannot use 00011 * $separatorTransformTable = array( ',' => '' ) 00012 * That would break when parsing and doing strstr '' => 'foo'; 00013 */ 00014 return $_; 00015 } 00016 00017 }