Gupnp Функции
PHP Manual

gupnp_context_new

(PECL gupnp >= Unknown)

gupnp_context_newCreate a new context

Описание

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

Create a new context with the specified host_ip and port.

Параметри

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.

Връщани стойности

A context identifier.

Примери

Example #1 Create new UPnP context

<?php

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

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

?>

Грешки/Изключения

Issues E_WARNING with unable to create context.


Gupnp Функции
PHP Manual