Statement Php

$shapes = array('S' => 'Cylinder',
                'N' => 'Rectangle',
                'A' => 'Sphere',
                'O' => 'Sphere',
                'P' => 'Rectangle');
foreach ($shapes as $key => $value) {
    print "The $key is a $value.";
}
?>