라라벨 (laravel) - Gets the scheme and HTTP host

스킴 (Scheme) 이 포함된 HTTP Host 을 반환.

request()→host() // 13.124.119.63

request()→getSchemeAndHttpHost() // <http://13.124.119.63>

request()->getSchemeAndHttpHost();

 

(!) 스킴 ( scheme )

사용할 프로토콜을 말하며, 리소스에 어떻게 요청, 접급할 것인지를 명시합니다.

웹에서 주로 HTTP, HTTPS 프로토콜을 사용합니다.


getSchemeAndHttpHost Method

/**
 * Gets the scheme and HTTP host.
 *
 * If the URL was called with basic authentication, the user
 * and the password are not added to the generated string.
 *
 * @return string The scheme and HTTP host
 */
public function getSchemeAndHttpHost()
{
    return $this->getScheme().'://'.$this->getHttpHost();
}

참고

[HTTP] URI, URL 구조

웹 리소스 식별 - HTTP | MDN

  • share