laravel-skill
2019-10-12 本文已影响0人
honkkki
<?php
trait Fly
{
function fly()
{
echo 'fly';
echo PHP_EOL;
}
}
class Bird
{
use Fly;
}
$bird = new Bird();
$bird->fly();
trait的例子,类似类的继承 可以自己写同名方法覆盖trait的方法。
- 更新数据防止名称重复
$request->validate([
'title' => 'required|unique:article,title,' . $article->id. '|max:255 ', // id为当前对象模型的id
])