Transcode the horizontal bar to % 2d. what function is used for conversion?

Source: Internet
Author: User
Transcode the horizontal bar to % 2d. what function is used for conversion? Transcode the horizontal bar to % 2d. what function is used for conversion?


Reply to discussion (solution)

Urlencode. urldecode is available.

It is a user-defined function.

$s = join('%', array_merge(array(''), str_split(bin2hex('-'), 2)));echo $s;
% 2d


Urlencode. urldecode is available.

I think so, but after trying these two functions, the input is still original-

echo urlencode('-');echo urldecode('-');

All displayed are --

RFC 3986: http://www.faqs.org/rfcs/rfc3986.html
Unreserved = ALPHA/DIGIT /"-"/"."/"_"/"~
These non-reserved characters should use the original characters in urlencode. That is:
Urlencode ("-"),
Urlencode ("Letter "),
Urlencode (number)
Urlencode (".")
Urlencode ("_")
Urlencode ("~ ") Are all original characters. (Before PHP 5.3.0, rawurlencode encoded the tilde line (~) according to» RFC 1738 (~). )
This interpretation may not be accurate. ,
However, urldecode ("% 2d") is indeed "-"

Note that the encoding standards of urlencode and rawurlencode are different.

Search online. what about more?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.