CLASS web

PHP

네임스페이스 축약하기

네임스페이스 짧게 사용하기

앞에서 네임스페이스를 사용하는 방법에 대해 알아봤습니다.
네임스페이스를 짧게 사용하는 방법에 대해 알아볼게요. use 키워드를 사용합니다.

use 사용 방법

use 네임스페이스\클래스 as 축약한 명칭;

예를 들어 앞에서 사용한 네임스페이스였던 \hello\hello를 hh로 축약한다면

use \hello\hello as hh;

그럼 예제를 통해서 작동여부를 살펴봅시다.

<?php
    namespace hello;

    class hello
    {
        function hello()
        {
            return '첫번째 hello 클래스입니다.';
        }
    }


    namespace hello2;

    class hello
    {
        function hello()
        {
            return '두번째 hello 클래스입니다.';
        }
    }

    use \hello\hello as hh;
    use \hello2\hello as hh2;

    $helloFirst = new hh;
    echo $helloFirst->hello();
    echo '<br>';
    $helloSecond = new hh2;
    echo $helloSecond->hello();
?>

결과는 바로 아래에서 확인할 수 있습니다.







위 코드의 결과

이렇게 한번 use를 사용하면 그 후부터는 타이핑을 조금이라도 줄일 수 있겠죠?





댓글 0개

정렬기준

PinkCoding

PinkCoding

X

PinkCoding

Web Scratch Pad

X

loading

            
            
        

컨텐츠로 돌아가기