前提・実現したいこと
・smartyを使ってDBから取得したデータのみをforeachでtable表示。
発生している問題・エラーメッセージ
・table表示で、各テーブルデータごとにエラー発生。
エラーメッセージ
Warning: Illegal string offset '各カラム名' in /Applications/MAMP/htdocs/smarty_test/templates_c/774497ade8290083b30fd348f083be01c3fa9f7e_2.file.list.tpl.php on line 76、78、80、82、84
指定された変数が配列ではなく文字列だと発生するエラーのようです。
エラーで指摘されたコード
<td><?php echo htmlspecialchars(smarty_modifier_date_format($_smarty_tpl->tpl_vars['s']->value['purchase_date'],'%Y-%m-%d'), ENT_QUOTES, 'UTF-8');?> </td> <td><?php echo htmlspecialchars($_smarty_tpl->tpl_vars['s']->value['stock_name'], ENT_QUOTES, 'UTF-8');?> </td> <td>¥<?php echo htmlspecialchars($_smarty_tpl->tpl_vars['s']->value['price'], ENT_QUOTES, 'UTF-8');?> </td> <td><?php echo htmlspecialchars($_smarty_tpl->tpl_vars['s']->value['number'], ENT_QUOTES, 'UTF-8');?> </td> <td><?php echo htmlspecialchars(smarty_modifier_date_format($_smarty_tpl->tpl_vars['s']->value['deadline'],'%Y-%m-%d'), ENT_QUOTES, 'UTF-8');?> </td>
該当のソースコード
list2.php
php
1<?php 2require_once('../db_connect2/db_connect2.php'); 3require( dirname( __FILE__ , 3).'/libs/Smarty.class.php' ); 4 5$smarty = new Smarty(); 6 7$smarty->template_dir = dirname( __FILE__ , 3).'/templates'; 8$smarty->compile_dir = dirname( __FILE__ , 3).'/templates_c'; 9$smarty->config_dir = dirname( __FILE__ , 3).'/configs'; 10$smarty->cache_dir = dirname( __FILE__ , 3).'/cache'; 11 12$smarty->escape_html = true; 13 14$rec = ''; 15 if(!is_array($rec)) 16 { 17 $rec = array(); 18 } 19 20try 21{ 22 $sql = 'SELECT stock_id,purchase_date,deadline,stock_name,price,number FROM stocks WHERE 1'; 23 $stmt = connect()->prepare($sql); 24 $stmt->execute(); 25 $rec = $stmt->fetch(PDO::FETCH_ASSOC); 26 $dbh = null; 27} 28catch(Exception $e) 29{ 30 echo "エラー発生:" . htmlspecialchars($e->getMessage(),ENT_QUOTES, 'UTF-8') . "<br>"; 31 print'ただいま障害により大変ご迷惑をお掛けしております。'; 32 exit(); 33} 34 35$smarty->assign('stock', $rec); 36$smarty->display('list.tpl'); 37?>
list.tpl
tpl
1<table class = "sorttbl" id = "myTable" border = "2"> 2 <tr> 3 <th class = "radio-th"></th> 4 <th class = "purchase_date-th">購入日</th> 5 <th class = "stock_name-th">商品</th> 6 <th class = "price-th">値段</th> 7 <th class = "number-th">数量</th> 8 <th class = "deadline-th" onclick = "w3.sortHTML('#myTable','.item', 'td:nth-child(6)')">消費期限 <i class = "fa fa-sort"></i></th> 9 </tr> 10 11 {foreach $stock as $s} 12 <tr class = "item"> 13 <td><input type = "radio" name = "stockid" value = "{$s.stock_id}"></td> 14 <td>{$s.purchase_date|date_format:'%Y-%m-%d'}</td> 15 <td>{$s.stock_name}</td> 16 <td>¥{$s.price}</td> 17 <td>{$s.number}</td> 18 <td>{$s.deadline|date_format:'%Y-%m-%d'}</td> 19 </tr> 20 {/foreach} 21 </table> 22
試したこと
・下記のサイトを参考に、配列であることを確認してから値を代入
https://scrapbox.io/namaozi/PHP7%E3%81%A7Illegal_string_offset%E3%81%8C%E5%87%BA%E3%82%8B
補足情報(FW/ツールのバージョンなど)
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。