博客列表 >实战:第3章 laravel基础1与数据增查改删

实战:第3章 laravel基础1与数据增查改删

王小飞
王小飞原创
2020年06月04日 16:51:42674浏览

控制器代码

Home.php

  1. <?php
  2. namespace App\Http\Controllers;
  3. use DB;
  4. class Home extends Controller{
  5. // 数据库查询
  6. public function get(){
  7. echo '<pre>';
  8. $res = DB::select('select * from users');
  9. print_r($res);
  10. }
  11. //数据库更新
  12. public function gxupdata(){
  13. $res = DB::update('update users set name="我知道,最好的语言:php25岁了" where id=1');
  14. var_dump($res);
  15. }
  16. //数据库新增
  17. public function xzupdata(){
  18. $res = DB::insert('insert users(`name`,`email`,`password`)values("mignzi","ad@s.com","aginogsg")');
  19. var_dump($res);
  20. }
  21. //删除数据
  22. public function delete(){
  23. $res = DB::delete("delete from users where id=5");
  24. var_dump($res);
  25. }
  26. }

路由代码

  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider within a group which
  10. | contains the "web" middleware group. Now create something great!
  11. |
  12. */
  13. Route::get('/', function () {
  14. return view('v');
  15. // echo date('Y-m-d h:i:s');
  16. });
  17. Route::get('/article/p/aaa', function () {
  18. // return view('v');
  19. echo date('Y-m-d h:i:s');
  20. });
  21. Route::get('/db','Home@get');
  22. Route::get('/dbgx','Home@gxupdata');
  23. Route::get('/dbxz','Home@zxupdata');
  24. Route::get('/dbxz','Home@delete');

效果

新增

修改:

删除:

查询:

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议