Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16147 программистов и 1772 робота. Сейчас ищут 1922 программиста ...
gupnp_root_device_new - Create a new root device
Вернуться к: Gupnp Функции
gupnp_root_device_new
(PECL gupnp >= 0.1.0)
gupnp_root_device_new — Create a new root device
Описание
resource gupnp_root_device_new
( resource
$context
, string $location
, string $description_dir
)Create a new root device, automatically downloading and parsing location.
Список параметров
-
context
-
A context identifier, returned by gupnp_context_new().
-
location
-
Location of the description file for this device, relative to the HTTP root
Возвращаемые значения
A root device identifier.
Примеры
Пример #1 Create new UPnP context and get device info service
<?php
/* Create the UPnP context */
$context = gupnp_context_new();
if (!$context) {
die("Error creating the GUPnP context\n");
}
/* Create root device */
$location = "/BinaryLight1.xml";
$dev = gupnp_root_device_new($context, $location);
?>
Смотрите также
- gupnp_root_device_set_available() - Set whether or not root_device is available
- gupnp_root_device_start() - Start main loop
- gupnp_root_device_stop() - Stop main loop
Вернуться к: Gupnp Функции