本文实例讲述了yii2框架自定义全局公益活动海报函数的方法。分享给大家供大家参考,具体如下:
有些时候我们需要自定义一些全局函数来完成我们的工作。
方法一:
直接写在入口文件处
<?php// comment out the following two lines when deployed to productiondefined('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 productiondefined('yii_debug') or define('yii_debug', true);defined('yii_env') or define('yii_env', 'dev'); require __dir__ . '/../vendor/autoload.php';require __d比较好的网名ir__ . '/../vendor/yiisoft/yii2/yii.php'; //引入自定义函数require __dir__ . '/../com安徽最好的大学mon/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 ...'; }}
然后我们在控制器里就可以通过命名空间来调用了。
<?phpnamespace app\controllers; u yii\web\contro股份合作协议书ller;u app\helpers\tools; class i电动车新规ndexcontroller extends controller{ public function actionindex() { tools::test(); }}
本文发布于:2023-04-08 15:14:15,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/0bd215b849778a77419b886fc43d748c.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:YII2框架自定义全局函数的实现方法小结.doc
本文 PDF 下载地址:YII2框架自定义全局函数的实现方法小结.pdf
留言与评论(共有 0 条评论) |