Home > Article > Backend Development > What do the square brackets in php mean?
Brackets ([]) are used in PHP for the following purposes: Array indexing: Gets or sets the value of an array element. Array declaration: declares an array containing elements. Hash table: declare key-value pairs (PHP 7.4). Scope parsing: parsing the scope of a variable or object. Mutable variable name: Create a variable containing the variable name.
The meaning of square brackets ([]) in PHP
The meaning of square brackets ([]) in PHP It has the following meanings:
1. Array index
<code class="php">$array = ['apple', 'banana', 'cherry']; echo $array[1]; // 输出:banana $array[0] = 'grape';</code>
2. Array declaration
<code class="php">$array = ['apple', 'banana', 'cherry'];</code>
3. Hash table (key-value pair)
<code class="php">$hashTable = ['name' => 'John Doe', 'age' => 30]; echo $hashTable['name']; // 输出:John Doe</code>
4. Range parsing operator
<code class="php">class MyClass { public $name = 'John Doe'; } $object = new MyClass(); echo $object->{$name}; // 输出:John Doe</code>
5. Variable variable name
<code class="php">$name = 'age'; $$name = 30; echo $age; // 输出:30</code>
Note:
The above is the detailed content of What do the square brackets in php mean?. For more information, please follow other related articles on the PHP Chinese website!