Wallogit.com
2017 © Pedro Peláez
Minimal PHP content negotiation library
A minimal PHP content negotiation library to process common headers such as media types, encodings, charsets and so on., (*1)
Quite a few concepts are taken from Negotiator., (*2)
require 'vendor/autoload.php';
$negotiator = new Negotiator\Parser([
'accept-charset' => 'utf-8, iso-8859-1;q=0.8, utf-7;q=0.2',
'accept' => 'text/html, application/*;q=0.2, image/jpeg;q=0.8',
'accept-language' => 'en;q=0.8, es, pt',
'accept-encoding' => 'gzip, compress;q=0.2, identity;q=0.5',
]);
$available = ['text/html', 'text/plain', 'application/json'];
$negotiator->preferredMediaTypes();
// ['text/html', 'image/jpeg', 'application/*']
$negotiator->preferredMediaTypes($available);
// ['text/html', 'application/json']
$negotiator->preferredMediaType($available);
// 'text/html'
Do note that you must retrieve the headers yourself and standardise the keys to lowercase representations (e.g. 'accept' vs. 'Accept')., (*3)
preferredMediaTypes($available), (*4)
Returns an array of preferred media types ordered by priority and optionally selected from a set of available types., (*5)
preferredMediaType($available), (*6)
Returns a string of the highest priority media type preferred, optionally selected from a set of available types., (*7)
preferredLanguages($available), (*8)
Returns an array of preferred languages ordered by priority and optionally selected from a set of available languages., (*9)
preferredLanguage($available), (*10)
Returns a string of the highest priority language preferred, optionally selected from a set of available languages., (*11)
preferredCharsets($available), (*12)
Returns an array of preferred character sets ordered by priority and optionally selected from a set of available character sets., (*13)
preferredCharset($available), (*14)
Returns a string of the highest priority character set preferred, optionally selected from a set of available character sets., (*15)
preferredEncodings($available), (*16)
Returns an array of preferred encodings ordered by priority and optionally selected from a set of available encodings., (*17)
preferredEncoding($available), (*18)
Returns a string of the highest priority encoding preferred, optionally selected from a set of available encodings., (*19)