__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Negotiation;
use Negotiation\Exception\InvalidLanguage;
final class AcceptLanguage extends BaseAccept implements AcceptHeader
{
private $language;
private $script;
private $region;
public function __construct($value)
{
parent::__construct($value);
$parts = explode('-', $this->type);
if (2 === count($parts)) {
$this->language = $parts[0];
$this->region = $parts[1];
} elseif (1 === count($parts)) {
$this->language = $parts[0];
} elseif (3 === count($parts)) {
$this->language = $parts[0];
$this->script = $parts[1];
$this->region = $parts[2];
} else {
// TODO: this part is never reached...
throw new InvalidLanguage();
}
}
/**
* @return string
*/
public function getSubPart()
{
return $this->region;
}
/**
* @return string
*/
public function getBasePart()
{
return $this->language;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Exception | Folder | 0775 |
|
|
| AbstractNegotiator.php | File | 5 KB | 0664 |
|
| Accept.php | File | 825 B | 0664 |
|
| AcceptCharset.php | File | 104 B | 0664 |
|
| AcceptEncoding.php | File | 105 B | 0664 |
|
| AcceptHeader.php | File | 58 B | 0664 |
|
| AcceptLanguage.php | File | 1.04 KB | 0664 |
|
| AcceptMatch.php | File | 1.17 KB | 0664 |
|
| BaseAccept.php | File | 2.95 KB | 0664 |
|
| CharsetNegotiator.php | File | 224 B | 0664 |
|
| EncodingNegotiator.php | File | 226 B | 0664 |
|
| LanguageNegotiator.php | File | 1.05 KB | 0664 |
|
| Negotiator.php | File | 2.81 KB | 0664 |
|