質問 > その他 > Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 |
その他
フラット表示 | 前のトピック | 次のトピック |
投稿者 | スレッド |
---|---|
yas-himuka |
投稿日時: 2024/9/24 14:49
対応状況: −−−
|
新米 登録日: 2024/7/9 居住地: 投稿: 6 |
Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 ▼テンプレート
[EC-CUBE] 4.0.6p-1 [レンタルサーバ] ローカル(MAMP) [OS] MacOS 14.6.1 [PHP] 7.4.33 [データベース] MySQL 5.7.44 [WEBサーバ] Apache/2.4.58 (Unix) [ブラウザ] GoogleChrome [導入プラグインの有無] なし [現象] ゲスト購入画面でプルダウンの受取日を記述したが Could not convert PHP value '例)2024/10/01' of type 'string' to type 'datetimetz'. Expected one of the following types: null, DateTimeと表示され確認画面に遷移しない。 「行ったこと」 前提、Customertrait.Ordertraitへdatetimetzで定義済み。 1.NomemberTypeExtion.phpへ以下を記述 $UkeDate = new \DatePeriod( $startDt, new \DateInterval('P1D'), $endDt->modify('+1 days') ); $dateFormatter = \IntlDateFormatter::create( 'ja_JP', \IntlDateFormatter::FULL, \IntlDateFormatter::FULL, 'Asia/Tokyo', \IntlDateFormatter::GREGORIAN, 'yyyy/MM/dd (EEEE)' ); foreach ($UkeDate as $day) { $UkeDateArray[$day->format('Y/m/d')] = $dateFormatter->format($day); $Ukedate = implode(',',$UkeDateArray); } $Ukedate =implode(',', $UkeDateArray); --form-- ->add('UkeDate', ChoiceType::class, [ 'choices' => array_flip($UkeDateArray), 'placeholder' => '日付を選択してください。', 'mapped' => false, 'required' => false, ]) 2.NomeberShoppingController.phpへ $UkeDate = $form['UkeDate']->getData(); $UkeDate = \DateTime::createFromFormat('Y/m/d(EEEE)', $UkeDate); を記述 3.Nomember.Twingへ記述 <dl> <dt> {{ form_label(form.shipping_delivery_date, '来店受取日', { 'label_attr': { 'class': 'ec-label' }}) }} </dt> <dd> <div class="ec-select ec-select__delivery"> {{ form_widget(form.UkeDate, {'attr': {'class': 'form- control'}}) }} {{ form_errors(form.UkeDate) }} </div> </dd> </dl> 以上を記述し、ゲスト購入画面で表示し選択も出来ますが「次へ」押下すると表題のエラーが出てcomfirm画面に進めません。 https://xoops.ec-cube.net/modules/newbb/viewtopic.php?topic_id=24840&forum=2&post_id=103987#forumpost103987を参考にしましたが解決が図れず、皆様のお知恵をお借りしたく存じます。 何卒、ご教示の程よろしくお願い致します。 |
フラット表示 | 前のトピック | 次のトピック |
題名 | 投稿者 | 日時 |
---|---|---|
» Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 | yas-himuka | 2024/9/24 14:49 |
Re: Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 | h_tanaka | 2024/9/24 15:13 |
Re: Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 | h_tanaka | 2024/9/25 16:17 |
Re: Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 | yas-himuka | 2024/9/26 13:56 |
Re: Could not convert PHP value '配列要素' of type 'string' to type 'datetimetz'. エラーの解消手法 | yuh | 2024/9/25 15:32 |