PHP在添加和连接时感到困惑

PHP is confused when adding and concatenating(PHP在添加和连接时感到困惑)
本文介绍了PHP在添加和连接时感到困惑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码:

<?php

    $a = 1;
    $b = 2;

    echo "sum: " .  $a + $b;
    echo "sum: " . ($a + $b);

?>

当我执行我的代码时,我得到:

When I execute my code I get:

2
sum: 3

为什么在第一个回显中打印字符串"sum:" 失败?加法用括号括起来似乎没问题.

Why does it fail to print the string "sum:" in the first echo? It seems to be fine when the addition is enclosed in parentheses.

这种奇怪的行为在任何地方都有记录吗?

Is this weird behaviour anywhere documented?

推荐答案

加法 + 运算符和连接 . 运算符都有相同的 运算符优先级,但由于它们是关联的,因此它们的评估如下:

Both operators the addition + operator and the concatenation . operator have the same operator precedence, but since they are left associative they get evaluated like the following:

echo (("sum:" . $a) + $b);
echo ("sum:" . ($a + $b));

所以你的第一行首先进行连接,最后是:

So your first line does the concatenation first and ends up with:

"sum: 1" + 2

(现在因为这是一个数字上下文,你的 字符串被转换为整数,因此你最终得到0 + 2,然后得到结果2.)

(Now since this is a numeric context your string gets converted to an integer and thus you end up with 0 + 2, which then gives you the result 2.)

这篇关于PHP在添加和连接时感到困惑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Convert JSON integers and floats to strings(将JSON整数和浮点数转换为字符串)
in php how do I use preg replace to turn a url into a tinyurl(在php中,如何使用preg替换将URL转换为TinyURL)
all day appointment for ics calendar file wont work(ICS日历文件的全天约会不起作用)
trim function is giving unexpected values php(Trim函数提供了意外的值php)
Basic PDO connection to MySQL(到MySQL的基本PDO连接)
PHP number_format returns 1.00(Php number_Format返回1.00)