gupnp_context_new

(PECL gupnp >= 0.1.0)
Create a new context
resource gupnp_context_new ([ string $host_ip [, int $port = 0 ]] )

Create a new context with the specified host_ip and port.

Parameters:
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.

Returns:

A context identifier.

Exception:

Issues E_WARNING with unable to create context.

Examples:
Create new UPnP context
1
2
3
4
5
6
7
8
9
10
<?php
 
/* Create the UPnP context */
$context = gupnp_context_new();
 
if (!$context) {
 die("Error creating the GUPnP context\n");
}
 
?>
doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.