Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
fabpot merged 1 commit intosymfony:2.7fromxabbuh:issue-15642
Nov 22, 2016
Merged

Conversation

@xabbuh
Copy link
Member

QA
Branch?2.7
Bug fix?yes
New feature?no
BC breaks?no
Deprecations?no
Tests pass?yes
Fixed tickets#15642
LicenseMIT
Doc PRn/a

@fabpot
Copy link
Member

Thank you@xabbuh.

@fabpotfabpot merged commit6954a07 intosymfony:2.7Nov 22, 2016
fabpot added a commit that referenced this pull requestNov 22, 2016
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/aCommits-------6954a07 [Doctrine][Form] support large integers
@xabbuhxabbuh deleted the issue-15642 branchNovember 22, 2016 09:37
// 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);
Copy link
Contributor

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 usingctype_digit()? Does the first test anything, that the second test does not?

Copy link
MemberAuthor

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

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

Yes, you are right. Maybeis_int($v) || ctype_digit($v) orctype_digit((string) $v) would be more readable.
Not important, though.

@fabpotfabpot mentioned this pull requestNov 27, 2016
This was referencedDec 13, 2016
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

1 more reviewer

@apfelboxapfelboxapfelbox left review comments

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

4 participants

@xabbuh@fabpot@apfelbox@carsonbot

[8]ページ先頭

©2009-2025 Movatter.jp