前提・実現したいこと
データベースのデータを HTML に出力したい。
具体的には、
HTML 上 の $this->request の中身を表示したい。
何故、 foreach が効かず、データが HTML 上に表示されないのか、
知恵をお貸しください。
起きている事象の原因の範囲を抽出して書き出しましたが、
ソース長くて、すみません。
該当のソースコード
PHP
1<?php 2 /* モデル */ 3 class Users 4 { 5 public $rows = []; 6 7 public function __construct() 8 { 9 $this->initDatabase(); 10 } 11 12 public function initDatabase() 13 { 14 $this->pdo = new PDO( 'mysql:host=127.0.0.1;dbname=testdb;charset=utf8', 'root', '' ); 15 } 16 17 // 全リストを抽出 18 public function usersList() 19 { 20 $sql = 'SELECT * FROM users'; 21 $stmt = $this->pdo->query( $sql ); 22 $this->rows = $stmt->fetchAll(); 23 24 return $this->rows; 25 } 26 } 27 28 /* コントローラ */ 29 class UsersController extends ControllerBase { 30 protected function userAction() { 31 return $this->modelObj->usersList(); 32 } 33 } 34 35 class ControllerBase 36 { 37 protected $methodName = ''; // アクションメソッド 38 protected $modelObj = NULL; // モデル クラスインスタンス 39 private $tpl = NULL; // テンプレート クラスインスタンス 40 41 // 処理実行 42 public function run() 43 { 44 // モデルのクラスインスタンスを取得 45 $this->modelObj = new Users(); 46 // ビューの初期化 47 $this->initializeView(); 48 } 49 50 // ビューの初期化 51 protected function initializeView() 52 { 53 $this->tpl = new Template(); 54 55 $methodName = 'userAction'; 56 $this->tpl->request = $this->$methodName(); 57 $this->tpl->main = $this->tpl->render(); 58 } 59 60 } 61 62 class Template 63 { 64 public $request = []; 65 public $main = []; 66 67 public function render() 68 { 69 include_once './main.html'; 70 } 71 } 72 73 $controllerObj = new UsersController(); 74 $controllerObj->run(); 75 76?>
HTML
1<html> 2 <head> 3 </head> 4 <body> 5 <p> 6 <?php 7 foreach ( $this->request as $data ) { 8 echo $data; 9 } 10 ?> 11 </p> 12 </body> 13</html>
mysql
1+------------+--------------+--------------------+------+-----+---------+----------------+---------------------------------+---------+ 2| Field | Type | Collation | Null | Key | Default | Extra | Privileges | Comment | 3+------------+--------------+--------------------+------+-----+---------+----------------+---------------------------------+---------+ 4| user_id | int | NULL | NO | PRI | NULL | auto_increment | select,insert,update,references | | 5| email | varchar(127) | utf8mb4_0900_ai_ci | NO | | NULL | | select,insert,update,references | | 6| password | varchar(255) | utf8mb4_0900_ai_ci | NO | | NULL | | select,insert,update,references | | 7| created_at | datetime | NULL | YES | | NULL | | select,insert,update,references | | 8| updated_at | datetime | NULL | YES | | NULL | | select,insert,update,references | | 9| deleted_at | datetime | NULL | YES | | NULL | | select,insert,update,references | | 10+------------+--------------+--------------------+------+-----+---------+----------------+---------------------------------+---------+
試したこと
位置を変えて、var_dump() をしましたが、 $this->request は、通常通り、展開され表示されます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。