Explorar el Código

[php] extern for number_format (closes #10115)

Aleksandr Kuzmenko hace 4 años
padre
commit
37f8eb3cb0
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6 0
      std/php/Global.hx

+ 6 - 0
std/php/Global.hx

@@ -1838,4 +1838,10 @@ extern class Global {
 		@see http://php.net/manual/en/function.filter-var.php
 	**/
 	static function filter_var(value: Any, ?filter:Int, ?options: EitherType<NativeAssocArray<Dynamic>, Int>):Dynamic;
+
+	/**
+		@see http://php.net/manual/en/function.number-format.php
+	**/
+	static function number_format(num:Float, ?decimals:Int, ?decimal_separator:String, ?thousands_separator:String):String;
+
 }