Skip to content

Instantly share code, notes, and snippets.

@happydeveloper
Last active December 25, 2015 08:09
Show Gist options
  • Save happydeveloper/6944460 to your computer and use it in GitHub Desktop.
Save happydeveloper/6944460 to your computer and use it in GitHub Desktop.
php배열 선언과 출력
<?php
/**
* Created by JetBrains PhpStorm.
* User: kangnaru
* Date: 13. 10. 12.
* Time: 오전 10:14
* To change this template use File | Settings | File Templates.
*/
$arr = array(1, 3, 6, 9);
print_r($arr);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment