On Thu, Feb 21, 2019 at 1:16 PM Chris Riley <t.carn...@gmail.com> wrote:
> Hi internals, > > I'd like to propose opening an rfc to make the following syntax legal: > > foreach($array as (int) $i) {} > > Which would be functionally equivalent to > > foreach($array as $i) { > $i=(int) $i; > } > > Thoughts? Feedback? > ~C > What's a scope where this would be a massive win, over a new line with a cast? Marco Pivetta http://twitter.com/Ocramius http://ocramius.github.com/