Login   Register  
PHP Classes
elePHPant
Icontem

File: commandServer.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Joe Bloggs  >  ArrayToXML  >  commandServer.php  >  Download  
File: commandServer.php
Role: Example script
Content type: text/plain
Description: Server Side Example - Processing Commands
Class: ArrayToXML
Send and receive arrays as XML via HTTP
Author: By
Last change:
Date: 2008-07-29 15:55
Size: 564 bytes
 

Contents

Class file image Download
<?php
require_once("./ArrayToXML.class.php");

// Setup Server
$server = new ArrayToXMLServer$HTTP_RAW_POST_DATA );
$requestArray $server->getRequestArray();


// Run Commands
switch($requestArray['command'])
{
    case 
"getServerTime":
        
$response date("G:i");
        break;
    case 
"getDayOfTheWeek":
        
$response date("l");
        break;
    default:
        
$response "Command not found";
        break;
}

$responseArray['response'] = $response;


// Send Response Array
$server->sendResponse($responseArray);