<?php 
/** 
 * Instantiate the service 
 */ 
$service = new ThingLangService(); 
 
/** 
 * Search for the original language of the book identified by ISBN 
 * 01928495729. 
 *  
 * Will return something like 'chi', 'dut', 'eng', etc. 
 */ 
$language = $service->getLang('01928495729'); 
 
/** 
 * Search for the original language of the book identified by ISBN 
 * 01928495729. Returns the full name of the language 
 *  
 * Will return something like 'Chinese', 'Dutch', 'English', etc. 
 */ 
$language = $service->getLang('01928495729', true); 
?>
 
 |