I need to assign the same value to different variables, but cannot do it like this because some of the are like this $var_a .= blah'
$var_a = $var_b = $same_var = $var_d = $some_var = 'A';
Is there another way to assign the same value to multiple variables?
Something like $var_a .=, $var_b .= 'this value'