Skip to content

Instantly share code, notes, and snippets.

@happydeveloper
Created October 12, 2013 03:58
Show Gist options
  • Save happydeveloper/6945652 to your computer and use it in GitHub Desktop.
Save happydeveloper/6945652 to your computer and use it in GitHub Desktop.
배열 접근 예제
<?php
/**
* Created by JetBrains PhpStorm.
* User: kangnaru
* Date: 13. 10. 12.
* Time: 오후 12:56
* To change this template use File | Settings | File Templates.
*/
$arr = array("foo"=>"bar", 12 => true);
echo $arr["foo"];
echo $arr[12];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment