Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
实际上,这两者都是相同的,但它们都返回不同的结果。
echo round(200 / ((175/100)*(175/100)), 2); Returns 65.31 echo round(200 / ((175/100)^2), 2); Returns 66.67
操作顺序都是正确的,因此对结果没有影响。 创建了一个键盘
^ 表示按位异或,而不是幂。对于电源使用功能 pow:
http://php.net/manual/en/function.pow.php