Mega Code Archive

 
Categories / Php / Data Type
 

Compact variables

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