Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
foreach($foo as &$bar) { //do something }
これは、PHP の foreach ループの構文です。通常、$foo&$barは異なる変数ですが、私の質問は、それらが同じ変数になることはできますか? そのようなコードを書くことが可能かどうかではなく、PHP が許可してくれるかどうかを尋ねているのです。これによりループ内の変数が変更されることはわかっていますが、それについては心配していません。
$foo
$bar