YII2中如何自定义全局函数

前端之家收集整理的这篇文章主要介绍了YII2中如何自定义全局函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有些时候我们需要自定义一些全局函数来完成我们的工作。

方法一:

直接写在入口文件

<?PHP

// comment out the following two lines when deployed to production
defined('YII_DEBUG') or define('YII_DEBUG',true);
defined('YII_ENV') or define('YII_ENV','dev');

require __DIR__ . '/../vendor/autoload.PHP';
require __DIR__ . '/../vendor/yiisoft/yii2/Yii.PHP';

$config = require __DIR__ . '/../config/web.PHP';

//自定义函数
function test() {
    echo 'test ...';
}

(new yii\web\Application($config))->run();

  

方法二:

在app下创建common目录,并创建functions.PHP文件,并在入口文件中通过require引入。

<?PHP

// comment out the following two lines when deployed to production
defined('YII_DEBUG') or define('YII_DEBUG','dev');

require __DIR__ . '/../vendor/autoload.PHP';
require __DIR__ . '/../vendor/yiisoft/yii2/Yii.PHP';

//引入自定义函数
require __DIR__ . '/../common/functions.PHP';

$config = require __DIR__ . '/../config/web.PHP';

(new yii\web\Application($config))->run();

  

方法三:

通过YII的命名空间来完成我们自定义函数的引入,在app下创建helpers目录,并创建tools.PHP(名字可以随意)。

tools.PHP代码如下:

<?PHP
//注意这里,要跟你的目录名一致
namespace app\helpers;

class Tools
{
    public static function test()
    {
        echo 'test ...';
    }
}

然后我们在控制器里就可以通过命名空间来调用了。

<?PHP

namespace app\controllers;

use yii\web\Controller;
use app\helpers\tools;

class IndexController extends Controller
{

    public function actionIndex()
    {
        Tools::test();
    }
}

  

原文链接:/yii/539333.html

猜你在找的Yii相关文章