The problem manual of ord () is described as converting to ASCII, but ASCII only has 127 characters. Why can't ord (& quot; I & quot;) still output results ., Only 127 ww.luascii characters are available? The number of extensions should be 256. Ord () is the problem of converting the first character of a string into an ASCII code ord ().
In the manual, it is converted to ASCII, but ASCII only contains 127 characters. Why can ord ("I") still output results.
------ Solution --------------------
Who tell u ascii only 127?
The number of extensions should be 256.
Ord () converts the first character of a string into an ASCII code. Chinese is double byte encoding.
So ord ("I") is only the ASCII code of the first character of "I"
------ Solution --------------------
$ Str = 'I ';
$ O1 = ord ($ str );
$ O2 = ord ($ str [0]);
// Output $ o1 = 230 $ o2 = 230.
The manual is clearly written.
Returns the ASCII value of the first character of the string.
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