From f4ca1a0057b156104392bd086f2111f05463bf51 Mon Sep 17 00:00:00 2001 From: Imants Horsts Date: Wed, 9 Jan 2019 13:05:36 +0200 Subject: [PATCH] more correct path calculation in case dirname() was `/` and in some other cases previous str_replace worked bad. --- src/Api.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Api.php b/src/Api.php index 3cd5a0d..0591b77 100644 --- a/src/Api.php +++ b/src/Api.php @@ -39,7 +39,8 @@ public function __construct($request = null) $script = $_SERVER['SCRIPT_NAME']; $path = $_SERVER['REQUEST_URI']; - $this->path = str_replace(dirname($script), '', str_replace($script, '', $path)); + $regex = '|^'.preg_quote(dirname($script)).'(/'.preg_quote(basename($script)).')?|i'; + $this->path = preg_replace($regex, '', $path, 1); } $ct = $this->request->getHeader('Content-Type');