Last active
October 9, 2015 13:35
-
-
Save klhall1987/6bb4781e3bb26591e36e to your computer and use it in GitHub Desktop.
List 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 | |
$phone = array( 'HTC', 'One M8', 'Android' ); | |
list($brand, $model , $os ) = $phone; | |
//echos "I have a HTC One M8 running Android." | |
echo "I have a $brand $model running $os."; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment