PHP libxml_set_streams_context() 函数设置下一个 libxml 文档加载或写入的流上下文。
语法
libxml_set_streams_context(context)
参数
context | 必需。 指定使用 stream_context_create() 函数创建的流上下文资源。 |
返回值
无。
示例:libxml_set_streams_context()示例
下面的示例显示了用法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');
?>