__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace SpomkyLabs\Pki\X501\StringPrep;
use const MB_CASE_LOWER;
/**
* Implements 'Map' step of the Internationalized String Preparation as specified by RFC 4518.
*
* @see https://tools.ietf.org/html/rfc4518#section-2.2
*/
final class MapStep implements PrepareStep
{
/**
* @param bool $fold Whether to apply case folding
*/
private function __construct(
protected bool $fold
) {
}
public static function create(bool $fold = false): self
{
return new self($fold);
}
/**
* @param string $string UTF-8 encoded string
*/
public function apply(string $string): string
{
// @todo Implement character mappings
if ($this->fold) {
$string = mb_convert_case($string, MB_CASE_LOWER, 'UTF-8');
}
return $string;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| CheckBidiStep.php | File | 477 B | 0664 |
|
| InsignificantNonSubstringSpaceStep.php | File | 1.01 KB | 0664 |
|
| MapStep.php | File | 872 B | 0664 |
|
| NormalizeStep.php | File | 506 B | 0664 |
|
| PrepareStep.php | File | 486 B | 0664 |
|
| ProhibitStep.php | File | 474 B | 0664 |
|
| StringPreparer.php | File | 1.88 KB | 0664 |
|
| TranscodeStep.php | File | 2.34 KB | 0664 |
|