瀏覽代碼

[php7] fix HxString.toUpperCase()

Alexander Kuzmenko 8 年之前
父節點
當前提交
7a66abf981
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/php7/Boot.hx

+ 1 - 1
std/php7/Boot.hx

@@ -627,7 +627,7 @@ private class HxEnum {
 private class HxString {
 private class HxString {
 
 
 	public static function toUpperCase( str:String ) : String {
 	public static function toUpperCase( str:String ) : String {
-		return str.toUpperCase();
+		return Global.strtoupper(str);
 	}
 	}
 
 
 	public static function toLowerCase( str:String ) : String {
 	public static function toLowerCase( str:String ) : String {