__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Negotiation;
class LanguageNegotiator extends AbstractNegotiator
{
/**
* {@inheritdoc}
*/
protected function acceptFactory($accept)
{
return new AcceptLanguage($accept);
}
/**
* {@inheritdoc}
*/
protected function match(AcceptHeader $acceptLanguage, AcceptHeader $priority, $index)
{
if (!$acceptLanguage instanceof AcceptLanguage || !$priority instanceof AcceptLanguage) {
return null;
}
$ab = $acceptLanguage->getBasePart();
$pb = $priority->getBasePart();
$as = $acceptLanguage->getSubPart();
$ps = $priority->getSubPart();
$baseEqual = !strcasecmp((string)$ab, (string)$pb);
$subEqual = !strcasecmp((string)$as, (string)$ps);
if (($ab == '*' || $baseEqual) && ($as === null || $subEqual || null === $ps)) {
$score = 10 * $baseEqual + $subEqual;
return new AcceptMatch($acceptLanguage->getQuality() * $priority->getQuality(), $score, $index);
}
return null;
}
}
| 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 |
|