質問編集履歴

3

あああ

2021/12/04 12:55

投稿

AMK
AMK

スコア765

test CHANGED
File without changes
test CHANGED
@@ -197,3 +197,7 @@
197
197
  $not_week = explode(",", $t->get_option( ', 'string', true ));
198
198
 
199
199
  としてみたが、動作せずでした
200
+
201
+ ##完全に行き詰ったので、有料での回答をお待ちしております。
202
+
203
+ [https://www.lancers.jp/work/detail/3868797](https://www.lancers.jp/work/detail/3868797)

2

進捗3

2021/12/04 12:55

投稿

AMK
AMK

スコア765

test CHANGED
File without changes
test CHANGED
@@ -28,7 +28,9 @@
28
28
 
29
29
  $end_day = $t->get_option( 'end_day', 'int', true );
30
30
 
31
+ $not_week = explode(",", $t->get_option( ', 'string', true ));
32
+
31
- $not_week = $t->get_option( 'end_day', 'int', true );
33
+ //$not_week = $t->get_option( 'not_week', 'string', true );
32
34
 
33
35
 
34
36
 
@@ -183,3 +185,15 @@
183
185
  start_dayとend_dayが読み込まなくなる
184
186
 
185
187
  not_weekの入れるの指定の仕方にもんだいがあるのかも?
188
+
189
+
190
+
191
+ >>12/3日追記
192
+
193
+ 文字列から配列で受け取るというアドバイスを頂いたので
194
+
195
+ 検索してexplode関数を見つけたので
196
+
197
+ $not_week = explode(",", $t->get_option( ', 'string', true ));
198
+
199
+ としてみたが、動作せずでした

1

進捗

2021/12/03 07:59

投稿

AMK
AMK

スコア765

test CHANGED
File without changes
test CHANGED
@@ -163,3 +163,23 @@
163
163
  1.オプションの値を読み込ませたいが読み込まない
164
164
 
165
165
  2.バリデーションチェック機能も入れたが動作せず、エラーが出ずそのまま進んでしまう
166
+
167
+ ##進捗状況
168
+
169
+ [list_date not_week=0,2 start_day=2 end_day=60]
170
+
171
+ から
172
+
173
+ [list_date list_date start_day:2 end_day:60]
174
+
175
+ に変更して、start_dayとend_dayの値は読み込めたが
176
+
177
+
178
+
179
+ 下記にすると
180
+
181
+ [list_date not_week:0,2 start_day:2 end_day:60]
182
+
183
+ start_dayとend_dayが読み込まなくなる
184
+
185
+ not_weekの入れるの指定の仕方にもんだいがあるのかも?