Php Http request urlencoderawurlencode, phprawurlencode. Php Http request urlencoderawurlencode, phprawurlencode in http request, if the parameter value contains Chinese, it is best to use the urlencoderawurlencode function. if the parameter value contains a plus sign, it is best to use Php Http request urlencode/rawurlencode
In an http request, the urlencode/rawurlencode function is recommended if the parameter value contains Chinese characters.
If the parameter value contains a plus sign, it is best to use it. otherwise, when receiving the parameter value in the background, the + sign is converted to a space, causing unnecessary trouble.
Note: the difference between urlencode and rawurlencode: urlencode encodes the space into the plus sign "+", and rawurlencode encodes the space into the plus sign "% 20 ".
In an http request, if the parameter value contains Chinese characters, you 'd better use the urlencode/rawurlencode function. if the parameter value contains a plus sign, you 'd better use it...