Skip to content

Instantly share code, notes, and snippets.

@webix
Last active October 11, 2017 02:49
Show Gist options
  • Save webix/a23582974d806fbbbf6f244309783a33 to your computer and use it in GitHub Desktop.
Save webix/a23582974d806fbbbf6f244309783a33 to your computer and use it in GitHub Desktop.
배열의 첫번째 놈만 가져오기
<?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