url::strip_hash PHP Method

strip_hash() static public method

Strips a hash value from the URL
static public strip_hash ( string $url ) : string
$url string
return string
    static function strip_hash($url)
    {
        return preg_replace('/#.*$/is', '', $url);
    }