-
单一入口框架查看全部
-
TP框架基础查看全部
-
什么是框架?查看全部
-
框架是程序结构代码的集合,而不是业务逻辑的集合查看全部
-
eq= neq!= gt> egt>= lt< elt<= heq=== nheq !===查看全部
-
ThinkPHP的运行流程: 1.加载ThinkPHP.php 2.加载./thinkPHP/LIB/core路径下的核心文件 3.加载项目的文件->分析URL->调用相关的控制器 示例URL:http://localhost/index.php?m=index&a=index m->module 模块 控制器 c->index 文件 a->action 方法 action= 页面 原理演示-示例代码: $module = isset($_GET['m'])?$_GET['m']:'index'; $action = isset($_GET['a'])?$_GET['a']:'index'; //echo $module.' and '.$action; $demo = new $module(); $demo -> $action(); class Index{ function __construct(){ echo "Tndex contronller!<br/>"; } function test(){ echo "Function test in contronller Index!"; } function Index(){ echo "Function index in contronller Index!"; } } class Test{ function __construct(){ echo "Test contronller!<br/>"; } function test(){ echo "Function test in contronller Test!"; } function Index(){ echo "Function index in contronller Test!"; } } exit;查看全部
-
框架解析查看全部
-
mark查看全部
-
thinphp的那些事查看全部
-
thinkphp框架基础查看全部
-
框架的定义查看全部
-
field 限制查询的字段查看全部
-
add save delete 主要是where的用法查看全部
-
eq = neq != gt> egt>= It< eIt<= heq=== nheq!==查看全部
-
if else语句,只有开始的if没有 / 结束符号,后面的都得加上查看全部
举报
0/150
提交
取消