We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
PHP7 is not compatible anymore with the preg_replace function.
All preg_replace functions should be replaced by preg_replace_callback()
The text was updated successfully, but these errors were encountered:
I believe only the /e modifier support has been removed, not the call itself.
7.0.0 Support for the /e modifier has been removed. Use preg_replace_callback() instead.
See preg_replace > Changelog.
Sorry, something went wrong.
exactly @hbcafe - /e modifier is allowing you to run eval() code - so the update of preg_replace() is just ensuring more security.
No branches or pull requests
PHP7 is not compatible anymore with the preg_replace function.
All preg_replace functions should be replaced by preg_replace_callback()
The text was updated successfully, but these errors were encountered: