-
目录结构功能查看全部
-
notbetween 就用else代替查看全部
-
$where['id'] = 34; M('User')->where($where)->delete();查看全部
-
Thinkphp运行流程查看全部
-
thinkphp中各文件夹的含义查看全部
-
的市场上出售调查查看全部
-
$this->display();//调用相应模板文件查看全部
-
多表查询 table(array('表名'=>'别名'))表名需要加前缀 M()->table(array('mk_user'=>'user,'mk_userinfo'=>'info'))->where('user.id=info.user_id')->select(); sump($data);查看全部
-
☆☆☆ 连贯操作之group和having方法 $data=M('user')->field('userid,count(*) as total')->having('userid>8')->group('userid')->select(); //显示所有userid的信息条数,并分组,组名total.只显示userid>8的数据。特别注意:having是配合group使用的,若group未使用则having不生效。 dump($data);查看全部
-
limit(start,length) page(页码,每页条数) 每页条数默认为20查看全部
-
1、实例化基础模型model $user = new Model('user');//表名,表前缀,数据库连接信息 $user = M('user'); 2.实例化用户自定义模型 $user = new UserModel(); $user = D('User'); 3、实例化公共模型 $user = new CommonModel(); 4、实例化空模型 $model = M(); $model->query($sql); //读取日常 select $model->execute($sql);//写入 update insert查看全部
-
$this->display()会默认调用相应与控制器同名的tpl文件夹下的html文件查看全部
-
1、ThinkPHP中的URL模式: 在配置文件中定义URL_MODEL的值 值为1 默认模式 pathinfo模式 形式如下:http://localhost/muke/index.php/Index/user/id/1.html 值为0 普通模式 形式如下:http://localhost/muke/index.php?m=Index&a=user&id=1 值为2 重写模式 形式如下:http://localhost/muke/Index/user/id/1.html 值为3 兼容模式 形式如下:http://localhost/muke/index.php?s=/Index/user/id/1.html查看全部
-
//------mysql式数据库连接方法----- 'DB_TYPE'=>'muysql',//数据库类型 'DB_HOST'=>'localhost1,localhost2,localhost3',//数据库服务器地址 'DB_NAME'=>'app_piupiupiu',//数据库名 'DB_USER'=>'root',//数据库用户 'DB_PWD'=>'',//数据库密码 'DB_PORT'=>'3306',//数据库端口 'DB_PREFIX'=>'piu_',//数据库表前缀 //开启主从服务器读写分离 'DB_RW_SEPARATE'=>true, //主服务器个数 'DB_MASTER_NUM'=>'2', //这样localhost1,localhost2为主服务器,localhost3为从服务器, //读操作使用从服务器,写操作使用主服务器查看全部
-
TP调试方法: define('APP_DEBUG',true); //开启调试模式 #1 conf下建立debug.php配置文件 在调试模式下其中配置项的优先级高于config.php 配置'SHOW_PAGE_TRACE'=>true,显示页面trace信息 #2 调用trace()方法 trace('配置项名称',C('配置项'));可直接在模板显示该配置项,不需要echo。 #3 调用G()方法,获取代码段执行时间(毫秒) G('run'); for($i=0;$i<100000;$i++){ $count += $i; } echo G('run','end');查看全部
举报
0/150
提交
取消