質問編集履歴

1

追記

2016/06/17 01:18

投稿

earnest_gay
earnest_gay

スコア615

test CHANGED
File without changes
test CHANGED
@@ -139,29 +139,3 @@
139
139
  </script>
140
140
 
141
141
  ```
142
-
143
-
144
-
145
- 配列をどう".$i."月"."に組み込むか...
146
-
147
-
148
-
149
- ```ここに言語を入力
150
-
151
- static function getMonth(){
152
-
153
- $months = array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
154
-
155
- $options = "";
156
-
157
- for($i = 1;$i <= 12;$i++){
158
-
159
- $options .= "<option value=".$i.">".$i."月"."</option>";
160
-
161
- }
162
-
163
- return $options;
164
-
165
- }
166
-
167
- ```