doukuanyong1939 2015-10-01 13:37
浏览 46
已采纳

有人能解释Php中奇怪的行为吗? [关闭]

This is not possible in Python:

Python 2.7.3
[GCC 4.7.2] on linux2
>>> b = 15
>>> a = 15 + b = 16
  File "<stdin>", line 1
SyntaxError: can't assign to operator
>>>

I can test the same in C, C++, Java and JavaScript...

var b=15 ; var a = 15+ b = 15
VM155:2 Uncaught ReferenceError: Invalid left-hand side in assignment(…)

But can someone explain me why this works in Php, and why?

php -r '$b = 15; $a = "45". $b = 15;'
  • 写回答

2条回答 默认 最新

  • doubu1853 2015-10-01 13:40
    关注

    When an assignment happens, PHP returns the value that was assigned.

    So if you were to do echo $a = 3; you would get 3 in the PHP out.

    Another example from the same docs linked above:

    $a = ($b = 4) + 5; // $a is equal to 9 now, and $b has been set to 4.
    

    Simply put, it's desired behaviour in the context of the language and its documentation. Python doesn't adopt this behaviour.

    Interestingly, I can also do this with other quite powerful programming languages. Here's Ruby:

    vagrant@ubuntu-14:/vagrant$ irb
    2.1.2 :001 > a = (b = 4) + 5
     => 9 
    2.1.2 :002 > b
     => 4 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀