In PHP, what does the operator 'as' do? For example,
foreach ( $this->Example as $Example )
Thanks.
|
|
Let's take an example:
This means
In other words this means that the elements of the array will be retrieved inside the loop
In both ways the vars |
|||||||||||
|
|
On each iteration of the foreach loop, |
|||
|
|
|
here is info from http://php.net/manual/en/control-structures.foreach.php
The first form loops over the array given by array_expression. On each loop, the value of the current element is assigned to $value and the internal array pointer is advanced by one (so on the next loop, you'll be looking at the next element). |
|||
|
|
|
It's only used with |
|||
|
|
|
Takes each entries in the array ie, $this->Example and puts it in $Example more details in http://php.net/manual/en/control-structures.foreach.php |
|||
|
|
|
It's used in a |
|||
|
|