I'm confused about the term Ordinal value of a character or a string in php documentation. Can somebody tell me what exactly an ordinal value is?
3条回答 默认 最新
dstwfcz1377 2013-10-04 06:50关注One "character" in PHP is one byte. Note that this is misleading for multi-byte characters, in which one character (say "漢") is encoded in multiple bytes. Anyway though, a byte is 8 bits and can represent a number between 0 and 255. The ordinal value of a character byte is simply this numerical value.
ord('a') -> 97Read http://kunststube.net/encoding if you need more background information about bytes/characters/encodings.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报