Регистрация Войти
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Войти через VK Войти через FB Войти через Google Войти через Яндекс
Поиск по сайту
gupnp_context_new
(PECL gupnp >= 0.1.0)
gupnp_context_new — 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.
Список параметров
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.
Примеры
Пример #1 Create new UPnP context
/* 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.
Смотрите также:
Описание на ru2.php.net
Описание на php.ru