What does the array p[in PHP mean? Solution Solutions
Source: Internet
Author: User
What does the array p[in PHP mean?
What does the array p[in PHP mean?
$g = Array ();
foreach ($re as $key = $val)
{
$g [] = new Class_a ($val);
}
P[] represents the current array pointer?
------Solution--------------------
The manual has:
New/modified with square brackets syntax
You can change an existing array by explicitly setting the value.
This is done by assigning a value to the array by specifying the key name within the square brackets. You can also omit the key name, in which case a pair of empty brackets ("[]") are added to the variable name. $arr [key] = value;
$arr [] = value;
Key can be an integer or string
Value can be any value.
------Solution--------------------
$g [] is assigned to the array $g, and in your case the index starts at 0.
------Solution--------------------
$g [] is an empty array.
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.