-
Notifications
You must be signed in to change notification settings - Fork 11.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rules with numeric keys do not validate properly #51499
Comments
Since this behavior has been present ever since the beginning I don't think we can change this. Should you want to propose this change I suggest you to attempt a PR to the master branch. Thanks |
What is the actual, valid, use-case for this? This seems very unlikely to be anyhow useful in a real use-case. |
If I'm reporting it it's because I encountered this bug while coding for one. I'm sending ids as keys in the validator, the ids are basically ids of fields in the db and each field has its own set of rule. The form is dynamic in this way, I don't use the error message, I'm making my own based on the failing rule/field |
This "behaviour" is an unintended bug of a native php function and it existing forever is not a valid reason to not want to improve the tool/framework we are working on for future use A validator works on key and there is no reason the key you pass in should ever change |
Thank you for reporting this issue! As Laravel is an open source project, we rely on the community to help us diagnose and fix issues as it is not possible to research and fix every issue reported to us via GitHub. If possible, please make a pull request fixing the issue you have described, along with corresponding tests. All pull requests are promptly reviewed by the Laravel team. Thank you! |
@Tofandel feel free to send a PR to |
As a workaround, you can wrap your fields' IDs into the same name key. Code will explain better: // routes/web.php
<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
// from DB
$fields = [
4 => ['label' => 'name', 'rule' => 'required'],
8 => ['label' => 'surname', 'rule' => 'required'],
];
Route::get('/', fn () => view('form', ['fields' => $fields]));
Route::post('/', function (Request $request) use ($fields) {
$rules = collect($fields)->mapWithKeys(fn ($field, $id) => [
'field.' . $id => $field['rule'],
]);
$attributes = collect($fields)->mapWithKeys(fn ($field, $id) => [
'field.' . $id => $field['label'],
]);
$request->validate($rules->all(), attributes: $attributes->all());
return back();
}); {{-- resources/views/form.blade.php --}}
<div style="white-space: pre-wrap;">@json($errors->all(), JSON_PRETTY_PRINT)</div>
<form action="/" method="POST">
@csrf
@foreach($fields as $id => $field)
<label for="field-{{ $id }}">{{ $field['label'] }}</label>
<input type="text" id="field-{{ $id }}" name="field[{{ $id }}]">
<br>
@endforeach
<button type="submit">send</button>
</form> |
@rodrigopedra Thanks, that's what I did but then the problem is that the path of the field in the error bag doesn't match with the name of the field in Inertia which is yet another workaround needed, very bad DX for a valid use case |
Thanks. This has come up before quite a few times. We decided we won't be changing this behaviour because this could have quite an impact on existing apps, sorry for that. We could maybe make the docs more clear about this so feel free to attempt a PR to the docs. |
I would like to see what exactly that could be, because I don't see it at all, and not a single test is failing on #51516. A validator works only on keyed arrays so this would have zero impact on existing apps, it's only fixing a bug that made this use case not possible in the first place (a use case being having those keys simply be numbers as well) |
Laravel Version
10.48.10
PHP Version
8.3
Database Driver & Version
No response
Description
Numeric rules (Eg:
[4 => 'required', 8 => 'required']
) when added to a validator are not saved properly, they are transformed into[0 => 'required', 1 => 'required']
in the constructorI tracked it down to this line
framework/src/Illuminate/Validation/Validator.php
Lines 1208 to 1210 in bf7046f
It seems the array merge recursive treats any numeric key differently and just appends it to the array instead of preserving the keys, this is explained in the php doc, but undesirable behavior in this case https://www.php.net/manual/en/function.array-merge-recursive.php
Steps To Reproduce
Running the following in a tinker session is enough to reproduce
Results in
A possible solution is a different implementation of the
array_merge_recursive
as seen here https://www.php.net/manual/en/function.array-merge-recursive.php#106985Prior attempt at a fix #39368
The text was updated successfully, but these errors were encountered: