ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯(lián)系官方銷售客服

1835022288

028-61286886

投訴 已解決 請問如何在自己開發(fā)的插件里引入第三方類庫看手冊應(yīng)該是在里配置 5 0
迅睿CMS版本:4.3.4 #插件

請問如何在自己開發(fā)的插件里引入第三方類庫?看官方手冊應(yīng)該是在App/MyAPP/Config/Auto,php里配置,但試了半天還是沒搞好,請各位大佬不吝賜教啊。

http://www.zbshanke.com/doc/767.html

<?php

// 自動加載識別文件

return [
    /**
     * -------------------------------------------------------------------
     * Namespaces
     * -------------------------------------------------------------------
     * This maps the locations of any namespaces in your application
     * to their location on the file system. These are used by the
     * Autoloader to locate files the first time they have been instantiated.
     *
     * The '/application' and '/system' directories are already mapped for
     * you. You may change the name of the 'App' namespace if you wish,
     * but this should be done prior to creating any namespaced classes,
     * else you will need to modify all of those classes for this to work.
     *
     * DO NOT change the name of the CodeIgniter namespace or your application
     * WILL break. *
     * Prototype:
     *
    'Phpcmf\Home'                  => CMSPATH.'Control/Home',
    'Phpcmf\Admin'                 => CMSPATH.'Control/Admin',
    'Phpcmf\Member'                => CMSPATH.'Control/Member',
     */
    'psr4' => [
        

    ],

    /**
     * -------------------------------------------------------------------
     * Class Map
     * -------------------------------------------------------------------
     * The class map provides a map of class names and their exact
     * location on the drive. Classes loaded in this manner will have
     * slightly faster performance because they will not have to be
     * searched for within one or more directories as they would if they
     * were being autoloaded through a namespace.
     *
     * Prototype:
     *
     *    'MyClass'   => '/path/to/class/file.php'
     */
    'classmap' => [
        
        
    ],
    
    
];
解決方案