Laravel框架学习笔记(二)项目实战之模型(Models)
2015-01-24信息快讯网
在开发mvc项目时,models都是第一步。
下面就从建模开始。
1.实体关系图,
由于不知道php有什么好的建模工具,这里我用的vs ado.net实体模型数据建模
下面开始laravel编码,编码之前首先得配置数据库连接,在app/config/database.php文件
'mysql' => array( 'driver' => 'mysql', 'read' => array( 'host' => '127.0.0.1:3306', ), 'write' => array( 'host' => '127.0.0.1:3306' ), 'database' => 'test', 'username' => 'root', 'password' => 'root', 'charset' => 'utf8', 'collation' => 'utf8_unicode_ci', 'prefix' => '', ),
配置好之后,需要用到artisan工具,这是一个php命令工具在laravel目录中
首先需要要通过artisan建立一个迁移 migrate ,这点和asp.net mvc几乎是一模一样
在laravel目录中 shfit+右键打开命令窗口 输入artisan migrate:make create_XXXX会在app/database/migrations文件下生成一个带时间戳前缀的迁移文件
代码:
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTablenameTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { } /** * Reverse the migrations. * * @return void */ public function down() { } }
看到这里有entityframework 迁移经验的基本上发现这是出奇的相似啊。
接下来就是创建我们的实体结构,laravel 的结构生成器可以参考http://v4.golaravel.com/docs/4.1/schema
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateTablenameTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('posts', function(Blueprint $table) { $table->increments('id'); $table->unsignedInteger('user_id'); $table->string('title'); $table->string('read_more'); $table->text('content'); $table->unsignedInteger('comment_count'); $table->timestamps(); }); Schema::create('comments', function(Blueprint $table) { $table->increments('id'); $table->unsignedInteger('post_id'); $table->string('commenter'); $table->string('email'); $table->text('comment'); $table->boolean('approved'); $table->timestamps(); }); Schema::table('users', function (Blueprint $table) { $table->create(); $table->increments('id'); $table->string('username'); $table->string('password'); $table->string('email'); $table->string('remember_token', 100)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('posts'); Schema::drop('comments'); Schema::drop('users'); } }
继续在上面的命令窗口输入php artisan migrate 将执行迁移
更多迁移相关知识:http://v4.golaravel.com/docs/4.1/migrations
先写到这里明天继续
将FCKeditor导入PHP+SMARTY的实现方法
php正则匹配html中带class的div并选取其中内容的方法
WampServer下安装多个版本的PHP、mysql、apache图文教程
Zend Guard使用指南及问题处理
PHP和Shell实现检查SAMBA与NFS Server是否存在
php读取flash文件高宽帧数背景颜色的方法
php实现监控varnish缓存服务器的状态
php连接oracle数据库及查询数据的方法
PHP连接MSSQL时nvarchar字段长度被截断为255的解决方法
php使用sql server验证连接数据库的方法
php使用pdo连接mssql server数据库实例
腾讯微博提示missing parameter errorcode 102 错误的解决方法
php提示Warning:mysql_fetch_array() expects的解决方法
PHP使用array_multisort对多个数组或多维数组进行排序
thinkphp文件处理类Dir.class.php的用法分析
php中Array2xml类实现数组转化成XML实例
ThinkPHP模板输出display用法分析
php使用str_replace实现输入框回车替换br的方法
php中convert_uuencode()与convert_uuencode函数用法实例
跟我学Laravel之快速入门
Laravel框架学习笔记(一)环境搭建
PHP+jQuery 注册模块的改进(三):更新到Smarty3.1
Linux下安装oracle客户端并配置php5.3
PHP中echo,print_r与var_dump区别分析
PHP5.3安装Zend Guard Loader图文教程
PHP错误Warning: Cannot modify header information - headers already sent by解决方法
安装ImageMagick出现error while loading shared libraries的解决方法
PHP实现自动登入google play下载app report的方法
PHP正则替换函数preg_replace和preg_replace_callback使用总结
PHP+iFrame实现页面无需刷新的异步文件上传
PHP下的Oracle客户端扩展(OCI8)安装教程
Laravel框架表单验证详解
Laravel框架中扩展函数、扩展自定义类的方法
Laravel框架路由配置总结、设置技巧大全
Laravel框架数据库CURD操作、连贯操作总结