Last active
October 11, 2017 02:49
-
-
Save webix/a23582974d806fbbbf6f244309783a33 to your computer and use it in GitHub Desktop.
배열의 첫번째 놈만 가져오기
This file contains hidden or 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 | |
$array = array( 1 => 'banila', 2 => 'macchiato', 3 => 'capuccino' ) | |
echo reset($array); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment