add full url

This commit is contained in:
Pavel Belyaev
2021-06-06 01:32:25 +05:00
parent 63da641a54
commit 2b37e54dbb
2 changed files with 5 additions and 1 deletions

View File

@@ -41,9 +41,11 @@ class LE_REQUEST {
$query= isset($s['REQUEST_URI']) ? $s['REQUEST_URI'] : '';
$query_clr = preg_replace('!\?.*?$!','',$query);
$full_url = $scheme."://".$host_full.$query;
return compact('ssl','port','scheme','standart_port','host','host_full','query','query_clr','protocol');
return compact('ssl','port','scheme','standart_port','host','host_full','query','query_clr','protocol','full_url');
}