-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Doctrine][Form] support large integers #20499
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
Conversation
xabbuh
commented
Nov 12, 2016
Q | A |
---|---|
Branch? | 2.7 |
Bug fix? | yes |
New feature? | no |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #15642 |
License | MIT |
Doc PR | n/a |
Thank you @xabbuh. |
This PR was merged into the 2.7 branch. Discussion ---------- [Doctrine][Form] support large integers | Q | A | ------------- | --- | Branch? | 2.7 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #15642 | License | MIT | Doc PR | n/a Commits ------- 6954a07 [Doctrine][Form] support large integers
@@ -104,7 +104,7 @@ public function getEntitiesByIds($identifier, array $values) | |||
// Filter out non-integer values (e.g. ""). If we don't, some | |||
// databases such as PostgreSQL fail. | |||
$values = array_values(array_filter($values, function ($v) { | |||
return (string) $v === (string) (int) $v; | |||
return (string) $v === (string) (int) $v || ctype_digit($v); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why aren't you only using ctype_digit()
? Does the first test anything, that the second test does not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, ctype_digit()
does not work with integers: https://3v4l.org/oi7fd
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, you are right. Maybe is_int($v) || ctype_digit($v)
or ctype_digit((string) $v)
would be more readable.
Not important, though.