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
(Fill in the relevant information below to help triage your issue.)
Template:
https://example.com/foo/{420}
Ends up with [0] being returned as the list of variable names. Expected ["420"].
[0]
["420"]
The text was updated successfully, but these errors were encountered:
The root cause of this is that there is some bad code that assumes that array keys are always strings, but PHP will convert '420' to 420.
Sorry, something went wrong.
Fix broken code that assumes array keys are strings (#120)
656e759
Fix broken code that assumes array keys are strings see #119
Successfully merging a pull request may close this issue.
Bug Report
(Fill in the relevant information below to help triage your issue.)
Summary
Template:
Ends up with
[0]
being returned as the list of variable names. Expected["420"]
.The text was updated successfully, but these errors were encountered: