Last active
October 9, 2015 13:37
-
-
Save klhall1987/b79cb4646f929c015aec to your computer and use it in GitHub Desktop.
Compact Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Describes phone | |
$brand = "HTC"; | |
$model = "One M8"; | |
$os = "Android"; | |
//Creates the phone array using the variables above as key value pairs. | |
$phone = compact("brand", "model" , "os"); | |
//outputs the following array: Array ( [brand] => HTC [model] => One M8 [os] => Android ) | |
print_r($phone); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment