国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

??
1. ????? ??
? PHP ????? ThinkPHP Thinkphp ??? ????? ???? ??

Thinkphp ??? ????? ???? ??

Jun 02, 2023 pm 05:37 PM
thinkphp

    ??? ????? ???? ???? ????? ??? ?? ? ??? ????.

    1. ????? ??

    1 ?? ??? ??: ??? ???? ????? ?? ????? ???

    php? ?????. make:listener

    ?:

    php make:listener UserListener

    ? ?? ? applistener下生成UserListener ???? ?? ???? ?????.

    2. ?? ??: appevent.php ??? ?? ???? ??? ?? UserListener ???? ?????.

    'listen' => applistenerUserListener']
    ],

    3. ?? ???: ??? ????? ?? ?? ?? ??? ?????

    event('testEvent');

    ??: ???? testEvent ????? ???? ??? ? ?? ??? ????? event.php? ?? ??? ??? ? ??? ?????.

    ????? ??? ? ? ?? ????? ??? ? ????. ?? ???? ????? ? ?? ????? ?? UserListener ???? ?? ???? ??? ? ????. (??? ????? ???? ??? ?? ?? ?? ??? ?? ????? ????.)

    4. ?? ?? ??: UserListener ???? ?? ????? ???? ?? ??

    ?? ??? ??? ????.

    Other: ???? ???? ???

    <?php
    namespace app\controller;
    class Other
    {
        public function hello()
        {
            echo &#39;hello function&#39;;
        }
    }

    Index: ??? ????? ???

     

    UserListener: ??? ?? ???

    <?php
    namespace app\listener;
    class UserListener
    {
        /**
         * 事件監(jiān)聽處理
         *
         * @return mixed
         */
        public function handle($event)
        {
            //當調(diào)用Index類的test1方法時該代碼有效,$event為null
            var_dump($event);
            //當調(diào)用Index類的test2方法時該代碼有效,$event為字符串hello
            var_dump($event);
            //當調(diào)用Index類的test3方法時該代碼有效,$event為Index類的實例
            //可以訪問Index類的name變量
            echo $event->name;
            //當調(diào)用Index類的test4方法時該代碼有效,$event為Other類的實例
            //可以調(diào)用Other類的hello方法
            echo $event->hello();
        }
    }

    2. ??? ??

    1. ?? ???? ?????

    ????? ??? ???? ????? ?? ????? ?????.

    php make:subscribe

    ?:

    php think make:subscribe UserSubscribe

    ?? ? UserSubscribe ???? appsubscribe ??? ?????.

    2. ???? ??

    appevent.php ??? ?? ???? UserSubscribe ???? ??? ?? ?????.

    'subscribe' => ['appsubscribeUserSubscribe'],

    ??: ??? ?????? ??? ??? UserListener? Listen ???? ???? ???

    3. Trigger listening

    ? ?? ??? ??

    4. Listening ??? ???? ???? ? ??? ????. ??? ?? ???? ?? ?????? ????. ?? ???? ?? ???? ?? ?????? ? ? ??? ??? ? ????.

    4.1 ?? ???

    ???? ??? ???? ontestEvent ???? UserSubscribe ???? ???? ???. ???? ??? ??? ??? ??? ? ???, ??? ?? ?? ???? ?? ???? ???. event.php?? ??? ??? ??? testEvent??? ??? ??? ontestEvent???(???? ??). Listening ???? ??? ??? ???? ???? ?????? ?? ?????? ???.
    ?? ??? ??? ????

    Other ? Index ???? ??? ? ?? ?? ??? ?????.

    UserSubscribe: ??? ?? ???

    <?php
    namespace app\subscribe;
    class UserSubscribe
    {
        public function ontestEvent($user)
        {
            //當調(diào)用Index類的test1方法時該代碼有效,$event為null
            var_dump($user);
            //當調(diào)用Index類的test2方法時該代碼有效,$event為字符串hello
            var_dump($user);
            //當調(diào)用Index類的test3方法時該代碼有效,$event為Index類的實例
            //可以訪問Index類的name變量
            echo $user->name;
            //當調(diào)用Index類的test4方法時該代碼有效,$event為Other類的實例
            //可以調(diào)用Other類的hello方法
            echo $user->hello();
        }
    }

    4.2 ?? ???

    ?? ??? ???? ??? ???? ????. ?? ???? ??. ??? ???? ????? ?? ????? ???? ?????.

    php think make:event

    ?:

    php think make:event UserEvent

    ?? ? < ;The UserEvent ???? ????? ?? ????>appevent ??? ?????.

    ?? ?? ? ???? ???? ????? ?? ?? ???? ?????. ??? ??? ???? ???? ??? ??? ??? ? ????. ?? ???? ??? ?? ????? ??? ? ????.

    ????, Event ??? ????? ??? ?? ?? ???? UserSubscribe ???? ?????. ?? ?? ??? ???? ? ??? ?? UserEvent ???? ?? ???? ??????.

    $event->listen(&#39;testEvent&#39;, [app(&#39;app\event\UserEvent&#39;), &#39;handle&#39;]);

    ?? ??? ??? ????

    Other ? Index ???? ??? ? ?? ?? ??? ?????.

    UserSubscribe: ??? ?? ???

    UserEvent: ??? ?? ???

    <?php
    declare (strict_types = 1);
    namespace app\event;
    class UserEvent
    {
        public function handle($user)
        {
            //當調(diào)用Index類的test1方法時該代碼有效,$user為null
            var_dump($user);
            //當調(diào)用Index類的test2方法時該代碼有效,$user為字符串hello
            var_dump($user);
            //當調(diào)用Index類的test3方法時該代碼有效,$user為Index類的實例
            //可以訪問Index類的name變量
            echo $user->name;
            //當調(diào)用Index類的test4方法時該代碼有效,$user為Other類的實例
            //可以調(diào)用Other類的hello方法
            echo $user->hello();
        }
    }

    ? ??? Thinkphp ??? ????? ???? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

    ? ????? ??
    ? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

    ? AI ??

    Undresser.AI Undress

    Undresser.AI Undress

    ???? ?? ??? ??? ?? AI ?? ?

    AI Clothes Remover

    AI Clothes Remover

    ???? ?? ???? ??? AI ?????.

    Video Face Swap

    Video Face Swap

    ??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

    ???

    ??? ??

    ???++7.3.1

    ???++7.3.1

    ???? ?? ?? ?? ???

    SublimeText3 ??? ??

    SublimeText3 ??? ??

    ??? ??, ???? ?? ????.

    ???? 13.0.1 ???

    ???? 13.0.1 ???

    ??? PHP ?? ?? ??

    ???? CS6

    ???? CS6

    ??? ? ?? ??

    SublimeText3 Mac ??

    SublimeText3 Mac ??

    ? ??? ?? ?? ?????(SublimeText3)

    ???

    ??? ??

    ??? ????
    1601
    29
    PHP ????
    1502
    276
    ???
    thinkphp ????? ???? ?? thinkphp ????? ???? ?? Apr 09, 2024 pm 05:33 PM

    ThinkPHP ????? ????? ??? ?????: Composer? ????, ???? ????? ???? php bin/console? ????, ?? ???? ??? http://localhost:8000? ?????.

    thinkphp?? ?? ??? ????. thinkphp?? ?? ??? ????. Apr 09, 2024 pm 06:09 PM

    ThinkPHP?? ??? PHP ????? ??? ?? ??? ????. ??? ???? 3.2, 5.0, 5.1, 6.0? ????, ??? ??? ??? ???? ??? ??? ???? ? ?????. ?? ?? ??? ThinkPHP 6.0.16???. ??? ??? ? PHP ??, ?? ?? ?? ? ???? ??? ??????. ??? ??? ??? ???? ?? ?? ??? ???? ?? ????.

    thinkphp? ???? ?? thinkphp? ???? ?? Apr 09, 2024 pm 05:39 PM

    ThinkPHP Framework? ???? ???? ??: ThinkPHP Framework? ?? ????? ?????? ??? ???. ThinkPHP ?? ????? ???? ?? ???(?? ??)? ????. ?????? ?? ????? ?????. ? ??? ?????. ThinkPHP ??????? ??????. ThinkPHP ?????? URL? ???? ?????.

    laravel? thinkphp ? ?? ?? ? ???? laravel? thinkphp ? ?? ?? ? ???? Apr 09, 2024 pm 03:18 PM

    Laravel? ThinkPHP ?????? ?? ??: ThinkPHP? ????? ??? ? ??? ??? ?? Laravel?? ??? ????. Laravel? ? ????? ??? ??????? ?? ThinkPHP? ? ??? ? ????.

    thinkphp? ???? ?? thinkphp? ???? ?? Apr 09, 2024 pm 05:42 PM

    ThinkPHP ?? ??: PHP, Composer ? MySQL ??? ?????. Composer? ???? ????? ????. ThinkPHP ?????? ???? ?????. ?????? ??? ?????. ?????? ??? ?????. ??????? ???? http://localhost:8000? ?????.

    thinkphp ??? ????? thinkphp ??? ????? Apr 09, 2024 pm 05:24 PM

    ThinkPHP? ?? ????, ?? ???, ?? ?? ? ?????? ???? ?? ??? ?? ??? PHP ????????. ?? ?? ???? ??? ?? 10,000? ??? ??? ??? ? ??? JD.com, Ctrip? ?? ??? ? ??? ? ?????? ????? ?? ?? ?????? ?? ?????.

    ?? ??: API ??? ?? ThinkPHP ?????? ???? ?? ?? ??: API ??? ?? ThinkPHP ?????? ???? ?? Nov 22, 2023 pm 05:18 PM

    ?? ??: API ??? ?? ThinkPHP ?????? ???? ?? ???? ????? ????? API(?? ????? ?????)? ???? ?? ? ??? ????. API? ??? ??, ?? ?? ? ?? ??? ??? ? ??? ????? ??? ???? ?? ?? ??? ?????. ??? PHP ?? ?????? ThinkPHP ?????? ????? ?? ???? ???? ????.

    ?? ??: ThinkPHP ?????? ???? ??? ??? ???? ?? ?? ??: ThinkPHP ?????? ???? ??? ??? ???? ?? Nov 22, 2023 pm 12:01 PM

    "?? ??: ThinkPHP ?????? ???? ??? ??? ???? ??" ??? ??? ??? ???? ?? ? ?? ????? ?? ?? ?? ??? ??? ???? ??? ???? ?? ?? ??? ?? ? ??????. ??? ??? ??? ??? ????? ?? ???? ??? ???, ?? ??? ??, ??? ?? ?? ?? ??? ?? ??? ??? ???? ?? ??? ??? ???? ?? ?? ?????. PHP ???? ?? ???? ?? ?????? ThinkPHP ?????? ??? ??? ???? ? ?? ??? ??? ?????.

    See all articles