We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ErrorException in Upload.php line 131: rand() expects parameter 2 to be integer, float given
$randNum = rand(1, 10000000000) . rand(1, 10000000000);
changed to `
$randNum = rand(1, 100000000) . rand(1, 100000000);
`
The text was updated successfully, but these errors were encountered:
var_dump(PHP_INT_MAX)
Sorry, something went wrong.
建议改成下面样,兼容32位和64位 $randNum = rand(1, 2000000000) . rand(1, 2000000000);
$randNum = rand(1, 2000000000) . rand(1, 2000000000);
No branches or pull requests
ErrorException in Upload.php line 131:
rand() expects parameter 2 to be integer, float given
changed to
`
`
The text was updated successfully, but these errors were encountered: