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

php字符串数字连接搞砸了

在这里收到一些PHP代码
<?PHP
echo 'hello ' . 1 + 2 . '34';
?>

输出234,

但是当我在“hello”之前添加一个数字11:

<?PHP
echo '11hello ' . 1 + 2 . '34';
?>

输出1334而不是245(我预计它),为什么呢?

真奇怪…

<?PHP
echo '11hello ' . (1 + 2) . '34';
?>

要么

<?PHP
echo '11hello ',1 + 2,'34';
?>

修复问题.

UPDv1:

最后设法得到正确答案:

‘hello’= 0(不包含前导数字,所以PHP假定它为零).

所以你好. 1 2简化为’hello1’2是2,因为’hello1’中的前导数字也不为零.

’11hello’= 11(包含前导数字,所以PHP假定是十一).

所以’11hello’. 1 2简化为“11和1”2,因为11 2是13.

UPDv2:

http://www.php.net/manual/en/language.types.string.php

The value is given by the initial portion of the string. If the string starts with valid numeric data,this will be the value used. Otherwise,the value will be 0 (zero). Valid numeric data is an optional sign,followed by one or more digits (optionally containing a decimal point),followed by an optional exponent. The exponent is an ‘e’ or ‘E’ followed by one or more digits.

原文地址:https://www.jb51.cc/php/131701.html

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

相关推荐