19 declare(strict_types=1);
45 switch ($this->max_nesting) {
46 case self::MAX_NESTING_4096:
49 case self::MAX_NESTING_65536:
60 $splitted = str_split(str_replace(
"-",
"", $i->
serialize()), $this->splitter);
62 $first_part = array_slice($splitted, 0, $this->limited_layers + 1);
63 $second_part = array_slice($splitted, $this->limited_layers + 1);
65 return implode(
"/", $first_part) . implode(
"", $second_part);
70 $str = str_replace(
"/",
"", $path);
72 $p1 = substr($str, 0, 8);
73 $p2 = substr($str, 8, 4);
74 $p3 = substr($str, 12, 4);
75 $p4 = substr($str, 16, 4);
76 $p5 = substr($str, 20, 12);
__construct()
MaxNestingPathGenerator constructor.
Class ResourceIdentification.
getPathFor(ResourceIdentification $i)
getIdentificationFor(string $path)
Class MaxNestingPathGenerator.