thinkPHP简单调用函数与类库的方法
2024-10-06
101
本文实例讲述了thinkPHP调用函数与类库的方法。分享给大家供大家参考,具体如下:
手册上说的很冗余,没看懂,下面简单的讲一下具体用法。
函数调用:
lib公共函数库叫common.php
App/common/common.php
分组模块下的公共函数库叫function.php
App/Modules/Admin/common/function.php
类库调用:
代码如下 | |
1classIndexActionextendsAction{2 publicfunctionindex(){3 // 调用“扩展基类库” ThinkPHP/Extend/Library/ORG/Util/Test.class.php4 import('ORG.Util.Test');5 $test=newTest();6 // 调用“扩展基类库” ThinkPHP/Extend/Library/Com/Util/Test.class.php7 import('Com.Util.Test');8 $test=newTest();9 // 调用“核心基类库” ThinkPHP/Lib/Core/Test.class.php10 import('Think.Core.Test');11 $test=newTest();12 $this->display();13 }14} |
赞一波!1
相关文章
- 【说站】js中diff函数的使用
- 【说站】js中isBefore函数如何判断
- 【说站】python错误类型捕获的方法
- 【说站】mysql有哪些建立索引的方法
- 【说站】mysql表导出的两种方法
- 【说站】python os.path.join()函数的使用
- 【说站】php增量Hash函数的使用
- 【说站】python中os.path.join()函数是什么
- 【说站】php方法断点如何实现
- 【说站】java类的两种引用方法
- 【说站】python多行注释的方法整理
- Google翻译退出中国:带访问方法(已验证)
- 【说站】Python中Series常用方法整理
- 【说站】python中update更新字典的方法
- 【说站】python中有哪些大小写转换方法
- 【说站】python isidentifier()方法是什么
- 【说站】python casefold()方法如何使用
- 【说站】凯撒密码python编程简单
- 【说站】mysql常见函数有哪几类
- 【说站】BigDecimal值在java比较的两种方法
文章评论
评论问答