本文实例讲述了Laravel框架Eloquent ORM删除数据操作。分享给大家供大家参考,具体如下:
这篇文章,以下三个知识点希望大家能够掌握
如下:
- 通过模型删除
- 通过主键值删除
- 通过指定条件删除
NO.1模型删除
老样子,我们先新建一个方法,然后输入代码。
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace App\Http\Controllers; use App\Student; use Illuminate\Support\Facades\DB; class StudentController extends Controller { public function orm4() { $student = Student::find(7); //找到id为7的 $bool = $student -> delete (); //删除 var_dump( $bool ); } } |
如果他显示出了一个true,则证明删除成功,如果没有删除成功,则报错
NO.2通过主键值删除
代码如下:
1
2
3
4
5
6
7
8
9
10
11
|
namespace App\Http\Controllers; use App\Student; use Illuminate\Support\Facades\DB; class StudentController extends Controller { public function orm4() { $num = Student::destroy(7); var_dump( $num ); } } |
如果他输出一个数字1,说明删除成功,受影响的删除数据总数为1,当然,如果要删除多条数据也很简单,代码如下:
1
2
3
4
5
6
7
8
9
10
11
|
namespace App\Http\Controllers; use App\Student; use Illuminate\Support\Facades\DB; class StudentController extends Controller { public function orm2() { $num = Student::destroy(7,5); var_dump( $num ); } } |
效果如下:
这里说明我删除了两条数据
NO.3通过指定条件删除
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace App\Http\Controllers; use App\Student; use Illuminate\Support\Facades\DB; class StudentController extends Controller { public function orm2() { $num = Student::where( 'id' , '>' ,3) -> delete (); var_dump( $num ); } } |
这里,id大于三的都会删除,我就不手动演示了
希望本文所述对大家基于Laravel框架的PHP程序设计有所帮助。
原文链接:https://blog.csdn.net/weixin_44596681/article/details/89135919