PHP Doku:: Create a new context - function.gupnp-context-new.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige DiensteGupnpGupnp Funktionengupnp_context_new

Ein Service von Reinhard Neidl - Webprogrammierung.

Gupnp Funktionen

<<gupnp_context_host_path

gupnp_context_set_subscription_timeout>>

gupnp_context_new

(PECL gupnp >= 0.1.0)

gupnp_context_newCreate a new context

Beschreibung

resource gupnp_context_new ([ string $host_ip [, int $port = 0 ]] )

Create a new context with the specified host_ip and port.

Parameter-Liste

host_ip

The local host's IP address, or NULL to use the IP address of the first non-loopback network interface.

port

Port to run on, or 0 if you don't care what port is used.

Rückgabewerte

A context identifier.

Beispiele

Beispiel #1 Create new UPnP context

<?php

/* Create the UPnP context */
$context gupnp_context_new();

if (!
$context) {
 die(
"Error creating the GUPnP context\n");
}

?>

Fehler/Exceptions

Issues E_WARNING with unable to create context.


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)