Data Type Php

$shapes = array('S' => 'Cylinder',
                'N' => 'Rectangle',
                'A' => 'Sphere',
                'O' => 'Sphere',
                'P' => 'Rectangle');
extract($shapes);
echo $Apple;
echo "";
echo $Notepad;
?>