cosmétique

This commit is contained in:
jbousquie 2016-11-24 14:09:43 +01:00
parent 7b3ac62f73
commit c94d5aa86b

View File

@ -1,9 +1,10 @@
<?php <?php
// Client HTTP // Client HTTP
// Ce fichier contient les fonctions clientes http
require_once 'HTTP/Request2.php'; require_once 'HTTP/Request2.php';
// Fonction GetURL() : renvoie le contenu d'une réponse à un GET http // Fonction GetURL() : renvoie le contenu d'une réponse à un GET http
// renvoie une string contenant le corps de la réponse // renvoie une string contenant le corps de la réponse http
Function GetURL($url) { Function GetURL($url) {
$body = ""; $body = "";
$r = new HTTP_Request2($url, HTTP_Request2::METHOD_GET); $r = new HTTP_Request2($url, HTTP_Request2::METHOD_GET);
@ -21,6 +22,7 @@ Function GetURL($url) {
// Fonction PostURL() : émet un POST http sur l'url // Fonction PostURL() : émet un POST http sur l'url
// paramètre : string $url et $param, un array de paramètres du POST // paramètre : string $url et $param, un array de paramètres du POST
// retourne une string contenant le corps de la réponse http
Function PostURL($url, $params) { Function PostURL($url, $params) {
$body = ""; $body = "";
$http = new HTTP_Request2( $url, HTTP_Request2::METHOD_POST); $http = new HTTP_Request2( $url, HTTP_Request2::METHOD_POST);