url::strip_hash PHP 메소드

strip_hash() 정적인 공개 메소드

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