Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
standard /
tests /
url /
Delete
Unzip
Name
Size
Permission
Date
Action
base64_decode_basic_001.phpt
1.03
KB
-rw-rw-r--
2022-10-31 11:36
base64_decode_basic_002.phpt
1.5
KB
-rw-rw-r--
2022-10-31 11:36
base64_decode_basic_003.phpt
5.6
KB
-rw-rw-r--
2022-10-31 11:36
base64_encode_basic_001.phpt
3.3
KB
-rw-rw-r--
2022-10-31 11:36
base64_encode_basic_002.phpt
1.17
KB
-rw-rw-r--
2022-10-31 11:36
bug47174.phpt
429
B
-rw-rw-r--
2022-10-31 11:36
bug52327.phpt
409
B
-rw-rw-r--
2022-10-31 11:36
bug53248.phpt
208
B
-rw-rw-r--
2022-10-31 11:36
bug54180.phpt
650
B
-rw-rw-r--
2022-10-31 11:36
bug55273.phpt
355
B
-rw-rw-r--
2022-10-31 11:36
bug55399.phpt
142
B
-rw-rw-r--
2022-10-31 11:36
bug63162.phpt
642
B
-rw-rw-r--
2022-10-31 11:36
bug68917.phpt
394
B
-rw-rw-r--
2022-10-31 11:36
bug69976.phpt
634
B
-rw-rw-r--
2022-10-31 11:36
bug73192.phpt
509
B
-rw-rw-r--
2022-10-31 11:36
bug74780.phpt
652
B
-rw-rw-r--
2022-10-31 11:36
get_headers_error_003.phpt
640
B
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_001.phpt
15.54
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_002.phpt
5.71
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_003.phpt
5.94
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_004.phpt
4.98
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_005.phpt
5.03
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_006.phpt
4.98
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_007.phpt
6.27
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_008.phpt
5.46
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_009.phpt
5.1
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_basic_010.phpt
666
B
-rw-rw-r--
2022-10-31 11:36
parse_url_error_002.phpt
1.14
KB
-rw-rw-r--
2022-10-31 11:36
parse_url_relative_scheme.phpt
204
B
-rw-rw-r--
2022-10-31 11:36
parse_url_unterminated.phpt
15.53
KB
-rw-rw-r--
2022-10-31 11:36
urls.inc
3.27
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Test parse_url() function : check values of URL related constants --FILE-- <?php /* Prototype : proto mixed parse_url(string url, [int url_component]) * Description: Parse a URL and return its components * Source code: ext/standard/url.c * Alias to functions: */ /* * check values of URL related constants */ foreach(get_defined_constants() as $constantName => $constantValue) { if (strpos($constantName, 'PHP_URL')===0) { echo "$constantName: $constantValue \n"; } } echo "Done"; ?> --EXPECT-- PHP_URL_SCHEME: 0 PHP_URL_HOST: 1 PHP_URL_PORT: 2 PHP_URL_USER: 3 PHP_URL_PASS: 4 PHP_URL_PATH: 5 PHP_URL_QUERY: 6 PHP_URL_FRAGMENT: 7 Done