我在 codeigniter pages.php 中有一个控制器
class Pages extends CI_Controller {
public function view($page = 'home')
{
$this->load->view('header');
echo("<br>");
$this->load->model("math");
echo $this->math->add(1,2);
}
}
模型:math.php
class math extends CI_Controller
{
public function add($val1,$val2){
return $val1+$val2;
}
}
视图:header.php
<html>
<head>
<title>fashion and style</title>
</head>
<body>
<?php
echo("this is the header");
?>
根据控制器,代码应输出:
this is the header
number
但我得到的输出如下:
number this is the header
为什么?