Browse Source

[php] Add externs for `quoted_printable_decode` and `quoted_printable_encode` functions (#10296)

Cédric Belin 4 years ago
parent
commit
af11f54e08
1 changed files with 10 additions and 0 deletions
  1. 10 0
      std/php/Global.hx

+ 10 - 0
std/php/Global.hx

@@ -1873,4 +1873,14 @@ extern class Global {
 		@see http://php.net/manual/en/function.empty.php
 	**/
 	static function empty(variable:Any):Bool;
+
+	/**
+		@see http://php.net/manual/en/function.quoted-printable-decode.php
+	**/
+	static function quoted_printable_decode(string:String):String;
+
+	/**
+		@see http://php.net/manual/en/function.quoted-printable-encode.php
+	**/
+	static function quoted_printable_encode(string:String):String;
 }