If for example you had an associative array which looked something like this:
$array = array('first-value' => 'Hello');
And you were then to extract it:
extract($array);
How would you access "first-value" as hyphens cannot be used in variable names? Is the hyphen replaced with another character?
I have tried the following with no luck...
echo ${'first-value'};
echo $first_value;
echo $firstvalue;
Couldn't even find an mention of this in the Php manual...
Thanks in advance!