芯友网Xin1234.COM

tp是怎么绑定表和模型的是根据名字 还是在模型里面定义?



海螃.海上.php
我问个问题,tp是怎么绑定表和模型的
是根据名字 还是在模型里面定义?
描索
模型里的
海螃.海上.php
他的模型里面只写了验证规则
别的什么都没写  对吧
景丘_州杭
嗯 
刚刚开始写
海螃.海上.php
那你这个模型没什么用啊
景丘_州杭
那我要怎么写才能生效
鸦.PHP
TP默认表名称和模型名称是一样的
景丘_州杭
额  那不一样的时候在哪里设置
鸦.PHP
没研究过,不过应该有映射的方法
景丘_州杭
。。。。。
不过还是多谢:)只交了
指教
B7lcttx
鸦.PHP
模型里面
class ChannelModel extends model{..}

控制器里面
$Form=D('channel')
景丘_州杭
表的名字不能该
我改了模型的
鸦.PHP
嗯,只要对应就可以了
景丘_州杭
但是没什么用啊
鸦.PHP
描索
exit($user->geterror())
景丘_州杭
这个验证 怎么抛出错误啊
描索
你放在if后面
exit($Form—>geterror())
我不是特别知道,你可以试试
景丘_州杭
描索

不好意思
景丘_州杭
没事 
多尝试而已
共同进步
描索
你弄好了可以告诉我吗,我也遇到这个问题了
景丘_州杭
嗯  
好的  有结果  我会分享到坛中的
jc c州杭
景丘_州杭
这个什么意思
語止途沿
php能获取后三个月或者一年的时间错吗?
时间错不能给死
jc c州杭
这个错误是上传类的,实例化上传类调用这个方法就行
景丘_州杭
我是提交表单没有进行静态验证
描索
我静态也不行
景丘_州杭
动态吧 
动态凑合用了
有时间 研究下 
語止途沿
sql语句如何查询两个字段的差(时间戳),如果不在两个字段值之间,修改数据。怎么查。求:)
凣嗏→php
你大雨小于

 pdo用不了么 ? 
鸦.PHP
 ?沿途止語 update table set b=if(a-b>1,9,b)
a字段减b字段大于1的话,更新字段为9,否则不变。
語止途沿
我去这么高科技的sql语句?
凣嗏→php
 pdo这个是啥问题 
鸦.PHP
没有发现这个类。
凣嗏→php
new pdo 就报错 
鸦.PHP
命名空间的问题?
凣嗏→php
php7 都这样么 ? 
鸦.PHP
没玩过7
过错
语法不会变的
凣嗏→php

有namespace就报错
过错
截全点
从第一行
nuS.PHP.理经.

编码
飞阿.州杭.习实.
?下 centos7服务器重启后 mysql写入数据 是啥服务没启动?
nuS.PHP.理经.
你是不是用了其它编码,然后里面加了3个空格?
YLIMHS.州杭.用试.
谁做了微信小程序?图片无法预览是怎么回事?:)求告知
凣嗏→ph p.事董.
0sg04δ0B
mysql> CREATE DATABASE IF NOT EXISTS `shopImooc`;
Query OK, 1 row affected, 1 warning (0.00 sec)

mysql&get; USE `shopImooc`;
Database changed
mysql&get;
mysql&get; -- 管理员表
mysql&get;
mysql&get; DROP TABLAE IF EXISTS `imooc_admin`;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'TABLA
E IF EXISTS `imooc_admin`' at line 1
mysql&get; CREATE TABLE `imooc_admin`(
    -&get; `id` tinyint unsigned auto_increment key,
    -&get; `username` varchar(20) not null unqiue,
    -&get; `password` char(32) not null,
    -&get; `email` varchar(50) not null
    -&get; );
ERROR 1064 (42000): You have an error in your SQL syntax; check the
 manual that
corresponds to your MySQL server version for the right syntax to use near 'unqiu
e,
`password` char(32) not null,
`email` varchar(50) not null
)' at line 3
mysql&get;
mysql&get; -- 分类表
mysql&get;
mysql&get; DROP TABLE IF EXISTS `imooc_cate`;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql&get; CREATE TABLE `imooc_cate`(
    -&get; `id` smallint unsigned auto_increment,
    -&get; `cName` varchar(50) not null unique
    -&get; );
ERROR 1075 (42000): Incorrect table definition; there can be only one auto colum
n and it must be defined as a key
mysql&get; -- 商品表
mysql&get;
mysql&get; DROP TABALE IF EXISTS `imooc_pro`;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
correspo
nds to your MySQL server version for the right syntax to use near 'TABAL
E IF EXISTS `imooc_pro`' at line 1
mysql&get; CREATE TABLE `imooc_pro`(
    -&get; `id` int unsigned auto_increment key,
    -&get; `pName` varchar(50) not null unique,
    -&get; `pSn` varchar(50) not null,
    -&get; `pNum` int unsigned default 1,
    -&get; `mPrice` decimal(10,2) not null,
    -&get; `iPrice` decimal(10,2) not null,
    -&get; `pDesc` text,
    -&get; `pImg` varchar(50) not null,
    -&get; `pubTime` int unsigned not null,
    -&get; `isShow` tinyint(1) default 1,
    -&get; `isHot` tinyint(1) default 0,
    -&get; `cId` smallint unsigned not null
    -&get; );
ERROR 1050 (42S01): Table 'imooc_pro' already exists
mysql&get; -- 用户表
mysql&get;
mysql&get; DROP TA
BLE IF EXISTS `imooc_user`;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql&get; CREATE TABLE `imooc_user`(
    -&get; `id` int unsigned auto_increment key,
    -&get; `username` varchar(20) not null unique,
    -&get; `password` char(32) not null,
    -&get; `sex` enum ("男","女","保密") not null default "保密",
    -&get; `face` varchar(50) not null,
    -&get; `regTime` int unsigned not null,
    -&get; );
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near ')' at
 line 8
mysql&get; -- 相册表
mysql&get;
mysql&get; DROP TABLE IF EXISTS `imooc_album`;
Query OK, 0 rows affected (0.04 sec)

mysql&get; CREATE TABLE `imooc_a
lbum`(
    -&get; `id` int unsigned auto_increment key,
    -&get; `pid` int unsigned not null,
    -&get; `albumPath` varchar(50) not null
    -&get; );
Query OK, 0 rows affected (0.07 sec)

mysql&get;
mysql&get; show tables;
+---------------------+
| Tables_in_shopimooc |
+---------------------+
| imooc_album         |
| imooc_pro           |
+---------------------+
2 rows in set (0.00 sec)

谁能帮我看下mysql报错啊
建了五个表,只有两个成功了,不知道错在哪里,有:)指点吗
子胡大.州杭
unique
0sg04δ0B.理助.
什么意思
?杭州-大胡子 是和我说吗
子胡大.州杭.用试.
看到有一个这个打错了,手机上看的蛋疼
0sg04δ0B.理助.
哦,谢谢啊
有at line1,我看看,也没看出什么问题
报错地址
支小.技科SITA.用试.
?哪位:)知道怎么用put方式数组?
头石色红.php.事董.
啥意思?
海螃.海上.php.理经.
是指HTTP的put请求?
.广两.用试.
php有什么深入的书籍啊

相关问题
------分隔线----------------------------
赞助商链接
赞助商链接
推荐内容