Kohana çerçeve.

0 Cevap php

Ben Kohana çerçevesinde bakıyor ve daha iyi bir çerçeve nasıl çalıştığını anlamak için kod geçmesi çalışıyorum.

So - index.php biz yük:

require SYSPATH.'base'.EXT;
require SYSPATH.'classes/kohana/core'.EXT;
require APPPATH.'bootstrap'.EXT;

Core.php dosyasında biz aşağıdakileri yapın:

public static $environment = Kohana::DEVELOPMENT;

What to we refer to by calling Kohana::DEVELOPMENT? From what I understand - by using :: we should be getting static constant from kohana class. - right? But at that moment in the code there is no Kohana class loaded that I could find. So - can someone explain what's going on here:) ? Thanks

RESOLUTION:

Önemli değil. Ben yeterince kodunu takip etmedi. Kohana sınıf Kohana_Core sınıfını genişletir. mmm. çok kötü StackOverflow dan aptal soruları silmek için hiçbir yolu yoktur.

0 Cevap