这篇文章给大家分享的是Laravel框架Eloquent ORM删除数据的方法。小编觉得挺实用的,因此分享给大家做个参考,文中示例代码介绍的非常详细,感兴趣的朋友接下来一起跟随小编看看吧。
这篇文章,以下三个知识点希望大家能够掌握
如下:
NO.1模型删除
我们先新建一个方法,然后输入代码。
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通过主键值删除
代码如下:
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,当然,如果要删除多条数据也很简单,代码如下:
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通过指定条件删除
代码如下:
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框架Eloquent ORM删除数据的方法,上述示例具有一定的借鉴价值,有需要的朋友可以参考学习,希望对大家学习Laravel框架有帮助,想要了解更多可以继续浏览群英网络其他相关的文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理