Rev 1987 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php/*** Using I18Nv2_Negotiator* =======================** I18Nv2 provides a language, charset and locale negotiator for HTTP.** $Id: using_I18Nv2_Negotiator.php,v 1.1 2007-06-25 09:55:25 alexandre_tb Exp $*/require_once 'I18Nv2/Negotiator.php';$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'en-US,en-GB,en;q=0.5,de';$_SERVER['HTTP_ACCEPT_CHARSET'] = 'utf-8,iso-8859-1;q=0.5';$neg = &new I18Nv2_Negotiator;echo "User agents preferred language: ",$lang = $neg->getLanguageMatch(), "\n";echo "User agents preferred country for language '$lang': ",$neg->getCountryMatch($lang), "\n";echo "User agents preferred locale: ",$neg->getLocaleMatch(), "\n";echo "User agents preferred charset: ",$neg->getCharsetMatch(), "\n";?>