0

PHP エラーが発生しました

重大度: 警告

メッセージ: foreach() に無効な引数が指定されました

ファイル名: views/content_view.php

ライン番号: 8

モデル:

<?php
if ( ! defined('BASEPATH')) exit ('No direct script access allowed');
  class Mat_model extends CI_Model
  {
    public function get_mat()
    {
      $query = $this->db->get('materials');
      $query->result_array(); 
    }
  }
?>

意見:

<div id="breadcrumb"><a href="">Home</a> &raquo; <a href="">Somewhere</a></div>
    <div id="right">
      <h1>Lorem Ipsum Dolor Set Amir</h1>
      <span class="postinfo"> Posted by <a href="">Dylan</a> on 07.09.06</span>
      <p>Lorem ipsum dolor set amir tolos and tacos for plenty to see. jack is the orange sub marine, by any means I found my plans. </p>
      <hr />
      <h1>
      <?php foreach ($news as $one):?>
      <?if(is_empty($one))?>
      <?=$one['author']?>
      <?php endforeach; ?>
      </h1>
      <span class="postinfo"> Posted by <a href="">Dylan</a> on 07.09.06</span>
      <p>Lorem ipsum dolor set amir <a href="">tolos</a> and tacos for plenty to see. jack is the orange sub marine, by any means I found my plans. </p>
    </div>
  </div>

コントローラ:

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Welcome extends CI_Controller {
    public function index()
    {
        $this->load->view('header_view');
        $this->load->view('menu_view');
        $this->load->view('categories_view');
        $this->load->view('useful_sites_view');
        $this->load->model('mat_model');
        $data = array();
        $data['news'] = $this->mat_model->get_mat(); 
        $this->load->view('content_view',$data);
        $this->load->view('footer_view');
    }   
}
?>

それで、私の間違いはどこですか?見つからない。

4

2 に答える 2

4

You are not returning anything from your function.

You probably want something like:

public function get_mat()
  {
    $query = $this->db->get('materials');
    return $query->result_array(); 
  }
于 2012-11-09T16:17:59.320 に答える
0

Jeroen-は正しいです。モデルでは値を返さないので、実際にはそのようなエラーが発生しました。のようなデータベースから取得したデータを確認してください。

      $this->load->view('useful_sites_view');
      $this->load->model('mat_model');
      $data = array();
      $data['news'] = $this->mat_model->get_mat(); 
      echo "<pre>";print_r($data);exit; 

したがって、そのようなエラーの可能性はありません。

于 2012-11-09T16:27:10.647 に答える