Use foreach loop to assign postdata variable

47 Views Asked by At

I wonder if I can use foreach to optimize my code and avoid mistakes.

I have to set variable like that from postdata:

$a2 = $postdata->a2;    
$a3 = $postdata->a3;        
$a4 = $postdata->a4;

and so on...

I forgot one line, it cause trooble in my treatment.

I thought a code like that, but, I'm no sure it will works:

foreach($postdata as $key => $value) {  
            $"a2, a3, a4,..." = $postdata->"a2, a3, a4,...";
}

Thanks for helping me ;)

0

There are 0 best solutions below