php bağlama verisi açıklaması (belirli muhtemelen Kohana?)

0 Cevap php

Kohana için dalış için çalışılıyor ve atm imo kullanıcı dokümanlar daha fazla kullanıcı dostu gibi ben Gayrıresmi 3.0 Kohana wiki okuyorum.

: Öyle gibi, "bir görünüm için veri bağlama" söz

<?php defined('SYSPATH') or die('No direct script access.');

class Controller_Welcome extends Controller {

    public function action_index()
    {
        $about_page = View::factory('pages/about')
                            ->bind('title', $title)
                            ->bind('header', $header);

        $title='This is my title';
        $title='This is my header';
        $this->request->response = $about_page;
    }

} // End Welcome

Hangi çıkışlar:

<html>
<head> 
<title>This is my title</title> 
</head> 
<body> 
<h1>This is my header</h1> 
</body> 
</html>

How is this possible? Or what's this method/process called? The variables are set after they are "used", if you like, hence my confusion.

Herhangi bir fikir için teşekkürler.

0 Cevap