私はCIを初めて使用し、コードをフィードバックして、思考プロセスがどこにあるのか、そして本当にCIに頭を悩ませているのかを感じたいと思っていました。
My_Controllerというファイルがコアディレクトリにあり、次のコードが含まれています。
<?php
class MY_Controller extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->data = array(
'title' => '',
'keywords' => 'default keywords',
'description' => 'default description',
'layout' => 'default',
'view' => '',
'body_class' => '',
'data' => array()
);
}
}
また、コントローラーディレクトリにhomeというコントローラーがあります。このコードは次のとおりです。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Home extends MY_Controller
{
function __construct()
{
parent::__construct();
}
public function index()
{
/*
Set variables to send to the wrapper template
Default values are stored in /application/core/MY_Controller.php
*/
$this->data['title'] = 'Home';
$this->data['keywords'] = 'Home';
$this->data['description'] = 'Home';
$this->data['view'] = 'content/home';
$this->data['body_class'] = 'home';
$this->data['data'] = array(); // associative array of values you can pass to the view
$this->load->view('layout/default', $this->data);
}
}
**そして最後に、ヘッダーとフッターの情報を保持するdefaultという名前のビューがあります。次に、サイトのどこにいるかに応じて、正しいコンテンツビューを動的にロードしたいと思います。これは、デフォルトのビューに対して私が持っているものです。
<!doctype html>
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="/assets/css/reset.css">
<link rel="stylesheet" href="/assets/css/app.common.css">
<script src="/assets/js/libs/modernizr-2.0.6.min.js"></script>
</head>
<body class="<?php echo $body_class; ?>">
<div id="wrapper">
<div id="container">
<header id="header">
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
</ul>
</nav>
</header>
<section id="main" role="main">
<?php echo $this->load->view($view); ?>
</section>
<footer id="footer"></footer>
</div>
</div>
<!--jQuery Libraries and Plugins-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/js/libs/jquery-1.8.0.min.js"><\/script>')</script>
<!--Other JavaScript Libraries and Plugins-->
<script type="text/javascript"> // Change UA-XXXXX-X to be your site's ID
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXX-X']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!--[if lt IE 9]>
<script src="/js/libs/selectivizr-1.0.2.min.js"></script>
<![endif]-->
<!--Application JavaScript-->
<script src="js/app/app.common.js"></script>
</body>
</html>
home.phpから正しい構文を取得しますが、次のエラーも発生します。
**PHPエラーが発生しました
重大度:警告メッセージ:ob_start():出力ハンドラー'ob_gzhandler'は'zlib出力圧縮'と競合しますファイル名:core / Output.php行番号:379 **
**PHPエラーが発生しました
重大度:通知メッセージ:ob_start():バッファーの作成に失敗しましたファイル名:core / Output.php行番号:379 **
誰かが私が何かを逃しているのか、それともこれが単に間違っているのか教えてもらえますか?