PHP
Referenzliste
libxml_set_streams_context
libxml Funktionen
Befehl:
void libxml_set_streams_context ( resource $streams_context )
Parameter-Liste:
Beschreibung | |
---|---|
Der Stream Kontext Ressource (mit stream_context_create() erstellt) |
Beschreibung:
Legt die Ströme Kontext für die nächsten libxml Dokument Last oder Schreiben.
Aktiv in Version:
(PHP 5, PHP 7)
Siehe auch:
libxml_set_streams_context() - Beispiel:
Eingabe:
<?PHP $opts = array( 'http' => array( 'user_agent' => 'PHP libxml agent', ) ); $context = stream_context_create($opts); libxml_set_streams_context($context); // request a file through HTTP $doc = DOMDocument::load('http://www.example.com/file.xml'); ?>
libxml Funktionen