paragonie/ionizer

eval vs dynamic variable

Closed this issue · 1 comments

might be missing something - but shouldn't a dynamic variable in the form ${$var . $append} let you do that without eval?

It lets us do _most of _ the work without eval(). 5c96226

The eval('$filtered =& ' . $var. ';'); remains necessary due to how references work with PHP.