Home Backend Development PHP Tutorial 嗯.像中奖同样的中bug

嗯.像中奖同样的中bug

Jun 13, 2016 am 10:50 AM
dump wait

嗯...像中奖一样的中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']);
Copy after login


结果:
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>
Copy after login
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>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is a dump file? What is a dump file? Jan 12, 2024 pm 04:58 PM

A dump file usually refers to a binary file, also known as a dump file or core dump file. This kind of file is generated by the computer system when it encounters a serious error or abnormal situation. It is used to store the status, stack, registers, memory images, logs and other information of the system or application.

What is the difference between sleep and wait methods in Java? What is the difference between sleep and wait methods in Java? May 06, 2023 am 09:52 AM

1. The fundamental difference between sleep and wait methods: sleep is a method in the Thread class and will not enter the running state immediately. wait is a method in the Object class. Once an object calls the wait method, notify() and notifyAll must be used. () method wakes up the process to release the synchronization lock: sleep will release the cpu, but sleep will not release the synchronization lock resources, and wait will release the synchronization lock resource usage range: sleep can be used anywhere, but wait can only be used in the synchronized synchronization method Or use exception handling in the code block: sleep needs to catch exceptions, but wait does not need to catch exceptions 2. wa

What is the meaning of dump in computer What is the meaning of dump in computer Jun 10, 2021 am 11:25 AM

In computers, dump means "dump" in Chinese, which generally refers to exporting and dumping data into files or static forms, that is, saving dynamic (volatile) data into static data (persistent data). There is no need to dump data like programs that are originally stored in storage media (such as hard disks).

In-depth understanding of Java multi-threaded programming: advanced application of wait and notify methods In-depth understanding of Java multi-threaded programming: advanced application of wait and notify methods Dec 20, 2023 am 08:10 AM

Multi-thread programming in Java: Master the advanced usage of wait and notify Introduction: Multi-thread programming is a common technology in Java development. In the face of complex business processing and performance optimization requirements, rational use of multi-threads can greatly improve the running efficiency of the program. . In multi-threaded programming, wait and notify are two important keywords used to achieve coordination and communication between threads. This article will introduce the advanced usage of wait and notify, and provide specific code examples to help readers better understand and apply

Optimize Java program performance: use wait and notify to improve code efficiency Optimize Java program performance: use wait and notify to improve code efficiency Dec 20, 2023 am 09:25 AM

Improve code performance: Use wait and notify to optimize Java programs. In daily software development, code performance optimization is an important aspect. As an object-oriented programming language, Java provides many optimization tools and techniques to improve program performance. Among them, using the wait and notify methods to achieve communication and synchronization between threads can effectively optimize the performance of Java programs and improve the execution efficiency of the code. wait and notify are two important methods for thread synchronization in Java

How to use wait and notify to implement communication between threads in Java How to use wait and notify to implement communication between threads in Java Apr 22, 2023 pm 12:01 PM

1. Why thread communication is needed? Threads execute concurrently and in parallel, which appears to be random execution of threads. However, in practical applications, we have requirements for the execution order of threads, which requires the use of thread communication. Why thread communication does not use priority? Come and solve the running order of threads? The overall priority is determined by the priority information in the thread pcb and the thread waiting time. Therefore, in general development, priority is not relied on to indicate the execution order of threads. Look at the following scenario: a bakery example to describe production. The consumer model has a bakery with bakers and customers, which correspond to our producers and consumers. The bakery has an inventory to store bread. When the inventory is full, it will no longer produce. At the same time, consumers will also buy bread when

How to install redis-dump tool How to install redis-dump tool May 27, 2023 pm 05:52 PM

The redis-dump tool is used to build the environment for data migration in the cluster: 192.168.19.201redis-cluster637970017002rvmredis-dump192.168.19.202redis-cluster637970017002192.168.19.203redis-cluster637970017002 due to the installation of the redis-dump tool You need to use rvm and gem tools, so they must be installed in advance. 1. Install the dependency packages required to install rvm and other tools in advance #yum-yinstallzlibzlib-develpcrepcre

How to Backup and Restore a Linux Server How to Backup and Restore a Linux Server Jun 18, 2023 am 10:32 AM

As the Linux operating system becomes more and more popular on the server side, data backup and recovery become more and more important. Backups ensure that data can be recovered in the event of system problems or data loss. This article will introduce how to back up and restore a Linux server. Backup Linux server 1. Full disk backup Full disk backup is to back up the entire hard disk and back up the file system contents (operating system, data, configuration files) while the entire directory structure remains unchanged, so that it can be restored to an almost identical state. Use the dd command to perform a full disk backup:

See all articles