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
implode(): Passing glue string after array is deprecated. Swap the parameters
phinx/src/Phinx/Util/Util.php文件中$fileName = static::getCurrentTimestamp() . '_' . strtolower(implode($arr, '_')) . '.php';的implode方法的参数顺序在php7.4中是不推荐的
phinx/src/Phinx/Util/Util.php
$fileName = static::getCurrentTimestamp() . '_' . strtolower(implode($arr, '_')) . '.php';
The text was updated successfully, but these errors were encountered:
感谢解决了,我的问题
Sorry, something went wrong.
啥时候官方才更新?
什么问题啊?直接修改php版本?
改为composer require topthink/think-migration:dev-master即可
composer require topthink/think-migration:dev-master
No branches or pull requests
phinx/src/Phinx/Util/Util.php
文件中$fileName = static::getCurrentTimestamp() . '_' . strtolower(implode($arr, '_')) . '.php';
的implode方法的参数顺序在php7.4中是不推荐的The text was updated successfully, but these errors were encountered: