在Laravel中使用数据库
在Laravel目录下找到.env目录,配置这几句:
DB_HOST=localhost
DB_DATABASE=testmy
DB_USERNAME=root
DB_PASSWORD=password
这样数据库就配置好了。
我们选择在控制器中操作数据库,具体的使用方法是这样的
这里我们会使用到模型层,在app/http/Model中新建一个模型,为User,具体方法为:namespace App\Http\Model;
use Illuminate\Database\Eloquent\Model;
class User extends Model{
protected $table='thetest';
}
这里我们使用模型链接数据库,$table对应的就是数据库的表名。在控制器中使用这个模型的方式就是直接调用这个类。
$theuser=User::where('value',111)->get();
dd($theuser);
这样就能查询出值为111的记录并输出。
使用Laravel查询表中的数据。
致此,Laravel框架的入门就结束了,谢谢各位的学习。