©
This document uses PHP Chinese website manual Release
(PECL gupnp >= 0.1.0)
gupnp_root_device_new — Create a new root device
$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.
Example #1 Create new UPnP context and get device info service
<?php
$context = gupnp_context_new ();
if (! $context ) {
die( "Error creating the GUPnP context\n" );
}
$location = "/BinaryLight1.xml" ;
$dev = gupnp_root_device_new ( $context , $location );
?>