From 68fc7984097c4373d7b73538260b13dd5b4a8340 Mon Sep 17 00:00:00 2001 From: Sam Light Date: Mon, 31 Mar 2025 22:07:52 +0100 Subject: Create FileString class --- src/FileString.php | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/FileString.php (limited to 'src/FileString.php') diff --git a/src/FileString.php b/src/FileString.php new file mode 100644 index 0000000..0bdca09 --- /dev/null +++ b/src/FileString.php @@ -0,0 +1,42 @@ + 0 && $file[$pos - 1] === $escape) { + $pos += $seperatorLen; + } + else break; + } + + + $unescape = fn($v) => str_replace($escape . $seperator, $seperator, $v); + + if ($pos === false) { + $this->fileUri = $unescape($file); + } + else { + $this->manifestName = $unescape(substr($file, 0, $pos)); + $this->fileUri = $unescape(substr($file, $pos + $seperatorLen)); + } + } +} -- cgit v1.2.3