mirror of
https://github.com/danog/parser.git
synced 2024-12-04 18:38:11 +01:00
9 lines
116 B
PHP
9 lines
116 B
PHP
|
<?php
|
||
|
|
||
|
foreach ($foo as $bar) {}
|
||
|
|
||
|
foreach ($foo as $bar => $baz) {}
|
||
|
|
||
|
foreach ($foo as $bar => [$baz, $bob]) {
|
||
|
|
||
|
}
|