19 declare(strict_types=1);
54 $this->splitter = match ($this->max_nesting) {
55 self::MAX_NESTING_4096 => 3,
56 self::MAX_NESTING_65536 => 4,
63 $splitted = str_split(str_replace(
"-",
"", $i->
serialize()), $this->splitter);
65 $first_part = array_slice($splitted, 0, $this->limited_layers + 1);
66 $second_part = array_slice($splitted, $this->limited_layers + 1);
68 return implode(
"/", $first_part) . implode(
"", $second_part);
73 $str = str_replace(
"/",
"", $path);
75 $p1 = substr($str, 0, 8);
76 $p2 = substr($str, 8, 4);
77 $p3 = substr($str, 12, 4);
78 $p4 = substr($str, 16, 4);
79 $p5 = substr($str, 20, 12);
__construct()
MaxNestingPathGenerator constructor.
Class ResourceIdentification.
getPathFor(ResourceIdentification $i)
getIdentificationFor(string $path)
Class MaxNestingPathGenerator.