Simplified array_push notation
CezaryDanielNowak opened this issue · 5 comments
CezaryDanielNowak commented
http://pl1.php.net/array_push
its impossible to do:
{{
x = [1,2,3]
x[] = 4
}}
btwael commented
CezaryDanielNowak commented
+1
CezaryDanielNowak commented
@x['sth'][] = 1
gives wrong result
btwael commented
@x['sth'][] = 1
is compiled to $this->x['sth'][] = 1;
CezaryDanielNowak commented
ouh looks like, i had website cached in my browser :)