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 /
Zend /
tests /
array_unpack /
Delete
Unzip
Name
Size
Permission
Date
Action
already_occupied.phpt
884
B
-rw-rw-r--
2022-10-31 11:36
basic.phpt
1.23
KB
-rw-rw-r--
2022-10-31 11:36
classes.phpt
623
B
-rw-rw-r--
2022-10-31 11:36
in_destructuring.phpt
212
B
-rw-rw-r--
2022-10-31 11:36
non_integer_keys.phpt
294
B
-rw-rw-r--
2022-10-31 11:36
ref1.phpt
273
B
-rw-rw-r--
2022-10-31 11:36
string_keys.phpt
451
B
-rw-rw-r--
2022-10-31 11:36
undef_var.phpt
281
B
-rw-rw-r--
2022-10-31 11:36
unpack_invalid_type_compile_time.phpt
192
B
-rw-rw-r--
2022-10-31 11:36
unpack_string_keys_compile_time.phpt
187
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Appending to an array via unpack may fail --SKIPIF-- <?php if (PHP_INT_SIZE != 8) die("skip 64bit only"); ?> --FILE-- <?php $arr = [1, 2, 3]; var_dump([PHP_INT_MAX-1 => 0, ...$arr]); var_dump([PHP_INT_MAX-1 => 0, ...[1, 2, 3]]); const ARR = [1, 2, 3]; const ARR2 = [PHP_INT_MAX-1 => 0, ...ARR]; var_dump(ARR2); ?> --EXPECTF-- Warning: Cannot add element to the array as the next element is already occupied in %s on line %d array(2) { [9223372036854775806]=> int(0) [9223372036854775807]=> int(1) } Warning: Cannot add element to the array as the next element is already occupied in %s on line %d array(2) { [9223372036854775806]=> int(0) [9223372036854775807]=> int(1) } Warning: Cannot add element to the array as the next element is already occupied in %s on line %d array(2) { [9223372036854775806]=> int(0) [9223372036854775807]=> int(1) }