0

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

なんで?

4

2 に答える 2