PHP/Data Structure/compact
Compact variables
<?php
$S= "Cylinder";
$N= "Rectangle";
$A= "Sphere";
$O= "Sphere";
$P= "Rectangle";
$shapes = compact("S", "N", "A", "O", "P");
var_dump($shapes);
?>
<?php
$S= "Cylinder";
$N= "Rectangle";
$A= "Sphere";
$O= "Sphere";
$P= "Rectangle";
$shapes = compact("S", "N", "A", "O", "P");
var_dump($shapes);
?>