> 백엔드 개발 > PHP 튜토리얼 > [리징산 php]daily laravel-20160901|Dispatcher-1

[리징산 php]daily laravel-20160901|Dispatcher-1

WBOY
풀어 주다: 2016-07-28 08:30:19
원래의
943명이 탐색했습니다.

<code>
namespace Illuminate\Events;

use Exception;
use ReflectionClass;
use Illuminate\Support\Str;
use Illuminate\Container\Container;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Contracts\Container\Container as ContainerContract;
<span>// use namespace</span>
class Dispatcher implements DispatcherContract
{<span>// a Dispatcher implements Dispatcher Contract</span><span>/**
     * The IoC container instance.
     *
     *<span> @var</span> \Illuminate\Contracts\Container\Container
     */</span><span>protected</span> $container;<span>// The Ioc container instance.</span><span>/**
     * The registered event listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $listeners = [];<span>// listeners be registered</span><span>/**
     * The wildcard listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $wildcards = [];<span>// The wildcard listeners. like store</span><span>/**
     * The sorted event listeners.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $sorted = [];<span>// The sorted event listeners.</span><span>/**
     * The event firing stack.
     *
     *<span> @var</span> array
     */</span><span>protected</span> $firing = [];<span>//The event firing stack.</span><span>/**
     * The queue resolver instance.
     *
     *<span> @var</span> callable
     */</span><span>protected</span> $queueResolver;<span>// The queue resolver instance.</span><span>// at last ,we find to instance ,some listeners</span><span>/**
     * Create a new event dispatcher instance.
     *
     *<span> @param</span>  \Illuminate\Contracts\Container\Container|null  $container
     *<span> @return</span> void
     */</span><span>// dispathcer is use to make it like you want</span><span>public</span> function <span>__construct</span>(ContainerContract $container = <span>null</span>)
    {
        $<span>this</span>->container = $container ?: <span>new</span> Container;
    }<span>// ContainerContract is $contanier</span></code>
로그인 후 복사
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

위의 내용을 포함하여 매일매일 [리징산 php] laravel-20160901|Dispatcher-1을 소개하고 있으니 PHP 튜토리얼에 관심있는 친구들에게 도움이 되었으면 좋겠습니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿