Du bist hier: Tips » Scripte » PHP
PHP
Referenzliste

libxml_set_streams_context

libxml Funktionen

    Befehl:
void libxml_set_streams_context ( resource $streams_context )


    Parameter-Liste:
NameBeschreibung
streams_contextDer 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:
Erstellt einen Stream Kontext
 

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