Heim >Backend-Entwicklung >PHP-Tutorial >嗯.像中奖同样的中bug

嗯.像中奖同样的中bug

WBOY
WBOYOriginal
2016-06-13 10:50:42919Durchsuche

嗯...像中奖一样的中bug?

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->var_dump($sumArr['TRADE_CLOSED']);$sumValue = array_sum($sumArr);var_dump($sumArr);var_dump($sumArr['TRADE_CLOSED']);


结果:
int 3
array (size=4)
  'WAIT_SELLER_SEND_GOODS' => int 8
  'WAIT_BUYER_CONFIRM_GOODS' => int 37
  'WAIT_BUYER_PAY' => int 2
  'TRADE_CLOSED' => &int 50
int 50

这是人品?这是bug?这是你妹的什么问题?

我单独用个临时文件重新写了一小段代码测试 却又输出正常...


------解决方案--------------------
你那TRADE_CLOSED为啥是个引用啊?
------解决方案--------------------
PHP code
$sumArr=Array('WAIT_SELLER_SEND_GOODS'=>8,'WAIT_BUYER_CONFIRM_GOODS' =>37,'WAIT_BUYER_PAY' =>2,'TRADE_CLOSED'=>50,);var_dump($sumArr['TRADE_CLOSED']);$sumValue = array_sum($sumArr);var_dump($sumArr);var_dump($sumArr['TRADE_CLOSED']);<br><font color="#e78608">------解决方案--------------------</font><br>
PHP code
<?php $aa=3;$sumArr=Array('WAIT_SELLER_SEND_GOODS'=>8,'WAIT_BUYER_CONFIRM_GOODS' =>37,'WAIT_BUYER_PAY' =>2,'TRADE_CLOSED'=>&$aa,);var_dump($sumArr['TRADE_CLOSED']);$sumValue = array_sum($sumArr);var_dump($sumArr);var_dump($sumArr['TRADE_CLOSED']);<div class="clear">
                 
              
              
        
            </div>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn