YII2实现自定义全局函数方法有哪一些?

Admin 2021-05-14 群英技术资讯 459 次浏览

       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', true);
defined('YII_ENV') or define('YII_ENV', '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();
  }
}

       文本介绍了两种YII2框架自定函数的方法,有需要的朋友可以参考一下,希望对大家学习和理解YII2框架的全局函数有帮助,更多YII2全局函数内容可以关注其他文章。

群英智防CDN,智能加速解决方案
标签: YII2全局函数

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。

猜你喜欢

成为群英会员,开启智能安全云计算之旅

立即注册
专业资深工程师驻守
7X24小时快速响应
一站式无忧技术支持
免费备案服务
免费拨打  400-678-4567
免费拨打  400-678-4567 免费拨打 400-678-4567 或 0668-2555555
在线客服
微信公众号
返回顶部
返回顶部 返回顶部
在线客服
在线客服