Data Type Php

$S= 'Cylinder';
$N= 'Rectangle';
$A= 'Sphere';
$O= 'Sphere';
$P= 'Rectangle';
$shapes = compact('S', 'N', 'A', 'O', 'P');
var_dump($shapes);
?>