-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathURLDecoder.php
More file actions
29 lines (27 loc) · 916 Bytes
/
URLDecoder.php
File metadata and controls
29 lines (27 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\net;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `URLDecoder` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class URLDecoder extends Object_
{
/**
* Deprecated.The resulting string may vary depending on the platform's default encoding.
* Decodes an application/x-www-form-urlencoded string using a specific encoding scheme.
* Decodes an application/x-www-form-urlencoded string using a specific Charset.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/package-summary.html#decode
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_decode($a = null, $b = null)
{
return rawurldecode($a);
}
}