Yöntem Kohana php 2.3.4 içinde yöntemini çağırın

0 Cevap php

Aşağıdaki kod Kohana 2.3.4 ile hata bulunamadı bir sayfasını oluşturuyor

class Search_Core
{    
    public function result($term)
        {
            $this->search->title = "Search Results";
            $this->search->content = View::factory("search_view");

            $test = $this->pleaseWork("This should be on the screen");
            $this->search->content->test = $test;

            return $this->search;
        }

    public function pleaseWork($word)
        {
            $dude = $word;

            return $dude;
        }

}

Ben daha önce aynı sınıf yöntemleri içinde yöntemler aradım, ama nedense bu çalışmıyor. Ben böyle bir şey ile $ test değişkeni değiştirebilirsiniz:

$test = "a bunch of random words";

Ve hiçbir sorun çalışacaktır. Ben Kohana dışında benzer bir şey yazabilir ve bu iş olacak, ama bu değil ve neden ben dışarı fgure olamaz. $ Deneme değişkeni search_view görünümünde ve ben gösterdiği gibi, bir yöntemini çağırarak aksine ben bir dize sağlarsanız eğer bulmak çalışır.

Hata Kohana.php hat # 841 üzerinde.

0 Cevap