ThinkPHP6.0 公共函数文件
2024-08-25
58
公共函数文件,可以理解为自定义函数文件
1. 公共函数文件位置
全局公共函数文件
app/common.php
应用公共函数文件
app/应用/common.php
2. 全局公共函数文件
自定义函数
app/common.php
<?php
// 应用公共文件
function getRand()
{
return mt_rand(100, 999);
}
在所有应用的控制器、模型中都可以直接使用该函数
<?php
namespace app\index\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
echo getRand() . ' ' . __METHOD__;
}
}
3. 应用公共函数文件位置
添加自定义函数
app/index/common.php
<?php
// index 应用公共函数文件
function getMd5Rand()
{
return md5(mt_rand(10, 99));
}
只能在index应用下使用该函数,在其他应用下使用则抛出未定义函数的错误
更新于:3个月前<?php
namespace app\index\controller;
use app\BaseController;
class Index extends BaseController
{
public function index()
{
echo getMd5Rand() . ' ' . __METHOD__;
}
}
赞一波!4
相关文章
- 【说站】python文件拆分与合并的方法
- 【说站】js函数执行过程的探究
- 【说站】python zip函数的使用注意
- 【说站】python装饰器如何保留原函数信息
- 【说站】python chardet库的函数用法
- 【说站】python正态分布中的normal函数
- 【说站】await在python协程函数的使用
- 【说站】python协程函数如何执行
- 【说站】python函数返回多个返回值
- 【说站】python用内置函数进行判断
- 【说站】python函数接收不同类型的参数
- 【说站】python range()函数指定数值
- 【说站】python zipfile模块的文件操作
- 【说站】python help()获取函数信息
- 【说站】python sorted()函数的参数用法
- 【说站】python文件导入相对路径
- 【说站】python shutil模块如何操作文件
- 【说站】python文件的读取和写入
- 【说站】python脚本文件的扩展名是什么
- 【说站】python用circle函数画兔子的方法
文章评论
评论问答