gpt4 book ai didi

php - Laravel 4 - 如何验证多个字段的唯一性?

转载 作者:行者123 更新时间:2023-12-02 06:35:23 35 4
gpt4 key购买 nike

我有这个架构:

Schema::create('members', function(Blueprint $table)
{
$table->increments('id');
$table->string('lname');
$table->string('fname');
$table->integer('mname');

$table->unique(array('lname', 'fname'));
});

我的问题是,如何验证这些唯一字段?

我试过了,但我知道这是错误的...

public static $rules = array(
'lname' => 'unique:members',
'fname' => 'unique:members'
);

感谢任何帮助..:)

最佳答案

你应该使用这个包 https://github.com/felixkiss/uniquewith-validator

像这样使用它:

$rules = array(
'<field1>' => 'unique_with:<table>,<field2>[,<field3>,...,<ignore_rowid>]',
);

关于php - Laravel 4 - 如何验证多个字段的唯一性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20674620/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com