为什么我会收到以下错误
遇到PHP错误严重性:警告 消息:未定义 变量:json文件名:views / search_page.php 行号:8
遇到PHP错误严重性:警告消息:尝试获取 非对象的属性文件名:views / search_page.php行号:8
遇到PHP错误严重性:警告消息:无效 为foreach()提供的参数文件名:views / search_page.php行 数量:8
使用此代码?
的search.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Search extends CI_Controller {
public function index()
{
$json = json_decode(file_get_contents('http://search.twitter.com/search.json?q=to%3astackexchange'));
$this->load->view('search_page', $json);
}
}
/* End of file search.php */
/* Location: ./application/controllers/search.php */
search_page.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Twitter Test</title>
</head>
<body>
<?php foreach ($json->results as $result): ?>
<h2><?php echo $result->from_user; ?></h2>
<?php endforeach ?>
</body>
</html>
答案 0 :(得分:4)
您需要将传入的变量($json
)分配给名称(“json”)
$this->load->view('search_page', array('json' => $json));
也许是一个更明确的例子:
$this->load->view('search_page', array('myNeatObject' => $json));
// ...then, in your view, you could
<p>This is the JSON: <?php echo print_r($myNeatObject, true) ?></p>
这就是为视图中的访问命名变量的方式。