Laravel中数据库的操作

  • 查找数据库的三种方式

    • DB facade(原始查找)
    • 查询构造
    • Eloquent ORM
  • 新建数据表

    • //示例表
      create table if not exits student(
      ‘id’ int auto_increment primaary key,
      ‘name’ varchar(255) not null default “”comment’姓名’,
      ‘age’ tinyint usigned not null default 0 comment ‘年龄’,
      )
  • 连接数据库

    • 需要操作的2个文件为config/database.php 和 .env,在这两个文件夹中更改你想要使用数据库及其他配置
    • //示例代码,controller部分

你可能感兴趣的:(PHP,Laravel)