Good evening personal
You can run this:
<?php
$variavel = 'foreach($v1 as $v2){echo $v2;};';
echo $variavel;
?>
Or is there anyway to run a class inside a variable (a function I know it has):
<?php
$variavel = 'class teste(){function oi(){echo 'oi';}}';
echo $variavel->teste->oi();
?>
something like that.
Thank you in advance