thinkphp model 模型存入数据到数据库 mysql

命名:

驼峰法命名,并且首字母大写

每个下划线后的第一个字幕应该变为大写

例如:

模型名 约定对应数据表(假设数据库的前缀定义是 think_)
UserModel think_user
UserTypeModel think_user_type

大致上先用模型类的create方法创建一个数据对象,

然后调用add方法或sava方法存到数据库

示例:

[pcsh lang="php" tab_size="4" message="" hl_lines="" provider="manual"]

public function __construct(){
		$this->cat = M('categories');
		$data['name']='thinkphp';
		$data['slug']='thinkphp';
		$this->cat->create($data);
		$this->cat->add();
	}

[/pcsh]

 

 

此处评论已关闭