(PHP 5, PHP 7, PHP 8)
libxml_set_streams_context — 为下一个 libxml 文档加载或写入设置流上下文
没有返回值。
示例 #1 libxml_set_streams_context() 示例
<?php
$opts = array(
'http' => array(
'user_agent' => 'PHP libxml agent',
)
);
$context = stream_context_create($opts);
libxml_set_streams_context($context);
// 通过 HTTP 请求文件
$doc = DOMDocument::load('http://www.example.com/file.xml');
?>