タイトル通り再起処理プログラムが動かないのです。かつ、何故このエラーが出るのかもわかりません。
木構造でデータを取り出すことを望んでいます。
どこに原因があるかご指摘いただきたいです。
sample.php
1<?php 2 require('dbconnect.php'); 3 4 new Sample(); 5 6 class Sample { 7 public function __construct() { 8 $this->list_children(); 9 } 10 11 public function list_children() { 12 13 $stmt = $db->prepare("select * from t_bbs where deleted_at is null order by id desc"); 14 $stmt->execute(); 15 while($row = $stmt->fetch()){ 16 $rows[] = $row; 17 } 18 $parent_ids = []; 19 foreach($rows as $row){ 20 $parent_ids[] = $row['parent_id']; 21 } 22 23 $row_bottom = []; 24 foreach($rows as $row){ 25 if(!in_array($row['id'], $parent_ids)){ 26 $row_bottom[] = $row['id']; 27 } 28 } 29 30 $categories = []; 31 foreach($row_bottom as $row_id){ 32 $categories[] = $this->set_ids($row_id, $rows); 33 } 34 var_dump($categories); 35} 36 37private function set_ids($id, $rows, $args = []){ 38 if(is_null($id)){ 39 return array_reverse($args); 40 }else{ 41 $args[] = $id; 42 43 foreach($rows as $row){ 44 if($row['id'] == $id){ 45 return $this->set_ids($row['parent_id'], $rows, $args); 46 } 47 } 48 } 49 } 50} 51?>
dbconnect.php
1<?php 2 error_reporting(E_ALL & ~E_NOTICE); 3 ini_set("display_errors",1); 4 5 try { 6 $db = new PDO('mysql:dbname=test_db;host=150.95.210.159;charset=utf8','mariasama',''); 7 $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 8} catch (PDOException $e) { 9 echo 'DB接続エラー' . $e->getMessage(); 10} 11 ?>
エラー文
Fatal error: Uncaught Error: Call to a member function prepare() on null in /var/www/html/sample.php:17 Stack trace: #0 /var/www/html/sample.php(8): Sample->list_children() #1 /var/www/html/sample.php(4): Sample->__construct() #2 {main} thrown in /var/www/html/sample.php on line 17
回答2件
あなたの回答
tips
プレビュー