-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with Cyrillic(UTF-8) #14884
Comments
@Aleksst95 Can you add the versions (php + phalcon) you are using and some example cyrillic characters? |
Yes, I already updated my issue(I accidentally clicked "submit new issue" before when it was not ready). |
@Aleksst95 With |
Yes. It will work even if I add just one latin character. For example: |
@Aleksst95 Thnx for reporting. I will check if the happens in Phalcon 4 as well. |
Describe the bug
I have a route:
$api->add('/is_unique_term/{term}', ['action' => 'isUniqueTerm']);
This is my action for the route:
public function isUniqueTermAction(string $term)
When i try to send cyrillic characters(UTF-8) in the term part Phalcon removes my characters and heads to other route.
Example of URI:
/is_unique_term/фалкон
.Instead of my route is described above Phalcon heads to
/is_unique_term
(if this exists of course).The text was updated successfully, but these errors were encountered: