(PECL gupnp >= 0.1.0)
gupnp_context_host_path — Démarre l'hébergement
$context
, string $local_path
, string $server_path
) : bool
Démarre l'hébergement de local_path
sur
server_path
. Les fichiers avec le chemin
local_path
.LOCALE (si ils existent) seront
servis lorsque LOCALE est spécifié dans l'en-tête Accept-Language de la requête.
context
Un identifiant de contexte, retourné par la fonction gupnp_context_new().
local_path
Chemin vers le fichier ou le dossier local à héberger.
server_path
Chemin du serveur Web où local_path
doit être hébergé.
Cette fonction retourne TRUE
en cas de succès ou FALSE
si une erreur survient.
Exemple #1 Crée un nouveau contexte UPnP et définit le chemin de l'hôte
<?php
/* Crée le contexte UPnP */
$context = gupnp_context_new();
if (!$context) {
die("Erreur lors de la création du contexte GUPnP\n");
}
/* Héberge le dossier courant */
gupnp_context_host_path($context, "./web", "");
?>