Solution to Cannot use a scalar value as an array in php

Source: Internet
Author: User

Today, when I was testing the php program, I encountered an error: Cannot use a scalar value as an array. The error message returned a few days ago. At that time, it seemed like I had fine-tuned it, I did not go deep into it, but today it appears again.

I can't confuse myself any more. I have to find out the cause and solution, so I went online to search for it. I haven't found any results for a long time. It's not that I can't find such a problem on the Internet, but few people make positive and accurate answers. The last text in this article makes me suddenly understand what is going on.

--------------
Note the following type conversion:
If a variable name (such as a) has been defined as a non-array type, such as integer, a can be converted to floating point, string (or even object type), but cannot be an array, that is, a [0] = 1; is incorrect. php will report the warning "Cannot use a scalar value as an array". Even if a is defined as a one-dimensional array, it cannot be converted into a high-dimensional array.
--------------
The solutions to the problems found by other netizens are as follows:
After seeing this sentence, I carefully checked the code and found that a Boolean variable I have defined above was called directly as an array at the bottom, so an error occurred.

If you have defined a non-array element and assigned a value, and used it as an array, the Cannot use a scalar value as an array Error will occur.

For example, var $ I = 1000;

$ I [5] = 345; // an error occurs at this time,

Therefore, we should give up this nonstandard code writing method.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.