PHPStrom do urlencode always in http requests - how can I change it?
Let's look in two examples:
curl -X GET \
'http://localhost/api/log?date=gte%3A2019-08-19T18%3A49%3A41.457Z&limit=1' \
-H 'cache-control: no-cache'
and
curl -X GET \
'http://localhost/api/log?date=gte:2019-08-19T18%3A49%3A41.457Z&limit=1' \
-H 'cache-control: no-cache'
notice difference after gte ... both this requests gives same result in REQUEST_URI and it is:
date=gte%3A2019-08-19T18%3A49%3A41.457Z
and I need it to be:
in first example: date=gte:2019-08-19T18%3A49%3A41.457Z
in second example: date=gte%3A2019-08-19T18%3A49%3A41.457Z
Postman can achieve this on the same apache setup.
How Can I run this two queries in PHPStorm?
请先登录再写评论。
Hi there,
https://youtrack.jetbrains.com/issue/WI-40402 I guess
thanks ... added comment