We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ea0dd commit e31686dCopy full SHA for e31686d
src/Request.php
@@ -695,6 +695,15 @@ public static function getUrl(): string
695
return $url;
696
}
697
698
+ /**
699
+ * Get Full URL (scheme + host [ + port if non-standard ] + path + query string)
700
+ * @return string
701
+ */
702
+ public static function getFullUrl(): string
703
+ {
704
+ return static::getUrl() . static::getPathInfo() . (static::getQueryString() ? '?' . static::getQueryString() : '');
705
+ }
706
+
707
/**
708
* Get IP
709
* @return string
0 commit comments