微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

为什么你可以增加PHP中的字符

PHP中,您可以像这样增加一个字符:

$b = 'a'++;

我想知道的是从语言的角度来看为什么行得通? PHP是否将字符解释为ASCII值,所以增加它只会使ASCII值高1,这将是字母表中的下一个字母?

解决方法:

查看此:http://php.net/manual/en/language.operators.increment.php

PHP follows Perl’s convention when dealing with arithmetic operations on character variables and not C’s.

For example, in PHP and Perl $a = ‘Z’; $a++; turns $a into ‘AA’, while in C a = ‘Z’; a++; turns a into ‘[‘ (ASCII value of ‘Z’ is 90, ASCII value of ‘[‘ is 91).

Note that character variables can be incremented but not decremented and even so only plain ASCII alphabets and digits (a-z, A-Z and 0-9) are supported. Incrementing/decrementing other character variables has no effect, the original string is unchanged.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐