You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The error is correct. curl sends the Emoji as-is on the wire:
GET /?🐦 HTTP/1.1
Host: 127.0.0.1:8080
User-Agent: curl/8.5.0
Accept: */*
This is the origin-form of RFC 9112, which is defined in terms of absolute-path from RFC 9110, which in turn is defined in terms of segment from RFC 3986, which requires percent-encoding for all non-ASCII characters.
Description
The following code:
Resulted in this output:
But I expected this output instead:
A 404 is expected because there is no index.php, but it still indicates successful parsing of the request.
PHP Version
PHP 8.3.17
Operating System
Fedora 41
The text was updated successfully, but these errors were encountered: