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 /
libxml /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
001.phpt
615
B
-rw-rw-r--
2022-10-31 11:36
002.phpt
1.64
KB
-rw-rw-r--
2022-10-31 11:36
003.phpt
512
B
-rw-rw-r--
2022-10-31 11:36
004.phpt
1.28
KB
-rw-rw-r--
2022-10-31 11:36
bug42112.phpt
672
B
-rw-rw-r--
2022-10-31 11:36
bug51903.phpt
1.15
KB
-rw-rw-r--
2022-10-31 11:36
bug54138.phpt
564
B
-rw-rw-r--
2022-10-31 11:36
bug54138_1.phpt
596
B
-rw-rw-r--
2022-10-31 11:36
bug54138_2.phpt
690
B
-rw-rw-r--
2022-10-31 11:36
bug54440.phpt
996
B
-rw-rw-r--
2022-10-31 11:36
bug61367-read.phpt
1.7
KB
-rw-rw-r--
2022-10-31 11:36
bug61367-read_2.phpt
1.61
KB
-rw-rw-r--
2022-10-31 11:36
bug61367-write.phpt
1.15
KB
-rw-rw-r--
2022-10-31 11:36
bug63389.phpt
420
B
-rw-rw-r--
2022-10-31 11:36
bug69753-mb.phpt
621
B
-rw-rw-r--
2022-10-31 11:36
bug69753.phpt
585
B
-rw-rw-r--
2022-10-31 11:36
bug69753.xml
64
B
-rw-rw-r--
2022-10-31 11:36
bug69753私はガラスを食べられます.xml
64
B
-rw-rw-r--
2022-10-31 11:36
bug76777.phpt
861
B
-rw-rw-r--
2022-10-31 11:36
bug79191.phpt
527
B
-rw-rw-r--
2022-10-31 11:36
libxml_disable_entity_loader.phpt
1.26
KB
-rw-rw-r--
2022-10-31 11:36
libxml_disable_entity_loader_2.phpt
1.06
KB
-rw-rw-r--
2022-10-31 11:36
libxml_disable_entity_loader_payload.txt
11
B
-rw-rw-r--
2022-10-31 11:36
libxml_set_external_entity_loader_basic.phpt
818
B
-rw-rw-r--
2022-10-31 11:36
libxml_set_external_entity_loader_error1.phpt
1.21
KB
-rw-rw-r--
2022-10-31 11:36
libxml_set_external_entity_loader_variation1.phpt
1.43
KB
-rw-rw-r--
2022-10-31 11:36
libxml_set_external_entity_loader_variation2.phpt
899
B
-rw-rw-r--
2022-10-31 11:36
test.xml
122
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Bug #54440: libxml extension ignores default context --SKIPIF-- <?php if (!extension_loaded('simplexml')) die('skip simplexml required for this test'); ?> --FILE-- <?php class TestWrapper { function stream_open($path, $mode, $options, &$opened_path) { if ($this->context) print_r(stream_context_get_options($this->context)); return false; } function url_stat($path, $flags) { return array(); } } stream_wrapper_register("test", "TestWrapper") or die("Failed to register protocol"); $ctx1 = stream_context_create(array('test'=>array('test'=>'test 1'))); $ctx2 = stream_context_create(array('test'=>array('test'=>'test 2'))); stream_context_set_default(stream_context_get_options($ctx1)); @simplexml_load_file('test://sdfsdf'); libxml_set_streams_context($ctx2); @simplexml_load_file('test://sdfsdf'); --EXPECT-- Array ( [test] => Array ( [test] => test 1 ) ) Array ( [test] => Array ( [test] => test 2 ) )