"라라벨 app()"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
3번째 줄: 3번째 줄:
* 서비스 컨테이너 인스턴스를 반환하는 라라벨 함수
* 서비스 컨테이너 인스턴스를 반환하는 라라벨 함수


<source lang='php'>
<syntaxhighlight lang='php'>
// use Illuminate\Container\Container;
// use Illuminate\Container\Container;


13번째 줄: 13번째 줄:
     return Container::getInstance()->make($abstract, $parameters);
     return Container::getInstance()->make($abstract, $parameters);
}
}
</source>
</syntaxhighlight>
<source lang='php'>
<syntaxhighlight lang='php'>
$container = app();
$container = app();
</source>
</syntaxhighlight>
<source lang='php'>
<syntaxhighlight lang='php'>
$api = app('HelpSpot\API');
$api = app('HelpSpot\API');
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==

2020년 11월 2일 (월) 02:58 기준 최신판

1 개요[ | ]

라라벨 app()
  • 서비스 컨테이너 인스턴스를 반환하는 라라벨 함수
// use Illuminate\Container\Container;

function app($abstract = null, array $parameters = [])
{
    if (is_null($abstract)) {
        return Container::getInstance();
    }
    return Container::getInstance()->make($abstract, $parameters);
}
$container = app();
$api = app('HelpSpot\API');

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}