-
在模板中使用函数 {$me['name']|md5|substr=0,5} 在方法中原生态执行 $name = substr(md5($me['name']),0,5); 时间戳输出 $this->now = time(); 模板中 {$now|date='Y-m-d H:i:s',###} 模板中系统变量的输出 {$Think.server.http_host} 等查看全部
-
thinkphp + 不能直接$name.age 要$name['age']才能输出 int 类型的数字。 {}自带输出功能的,相当于<?php> echo '$name'查看全部
-
调用模板时使用$this->display(); 调用建立好的模板 $this->display('test'); $this->display('Index/test') $this->display()会默认调用相应与控制器同名的tpl文件夹下的html文件查看全部
-
自定义函数放在Common文件->Common文件夹->function.php中查看全部
-
四种URL模式 0 普通模式 http://localhost/test/index.php?m=Index&a=index&id=1 1.PATHINFO模式 http://localhost/test/index.php/Index/index/id/1.html 2.重写模式 http://localhost/test/Index/index/id/1.html 3.兼容模式 http://localhost/test/index.php?s=/Index/index/id/1.html 建议使用PATHINFO模式 U方法 : 构造一个URL并返回 U('模块/方法',array('id' => 1),'xxxx html htm shtml',true/false,'localhost'); 可以在配置文件中更改URL 模式 'URL_MODEL' => 0/1/2/3查看全部
-
$update['score']=60; $where['id']=1; $data=M('User')->where($where)->save($update);查看全部
-
创建入口文件 define('APP_NAME','app');定义一个应用 define('APP_PATH','./admin/');定义路径文件查看全部
-
创建入口文件 define('APP_NAME','app');定义一个应用 define('APP_PATH','./admin/');定义路径文件查看全部
-
入口文件查看全部
-
PHP特点查看全部
-
主从服务器查看全部
-
function strtodate($str="now", $f="Y-m-d"){ return date($f, strtotime($str)); }查看全部
-
update操作查看全部
-
这是哪个版本? 怎么最新的只生成了三个文件夹,其他的都没有!!! 求解答!!!查看全部
-
tp3.2版本 公共函数的名称为function.php查看全部
举报
0/150
提交
取消