views:

139

answers:

1

I really like the Kohana cascading file system.

Do any other PHP frameworks feature this? I want to learn another framework besides Kohana, but I'd love to be able to use the awesomeness of the file system.

+2  A: 

Yes, CodeIgniter is the other framework with similar file system. In fact, Kohana was developed and improved from CodeIgniter.

Also, you can find full list of stable php frameworks along with their features here:

PHP Frameworks

Sarfraz
Thanks, I knew about the original fork, but didn't realise that the cascading was obviously included. Silly me.
alex
That link doesn't even have Kohana on it! I would of thought it deserved a spot there.
alex
Unfortunately Kohana still suffers from a lack of exposure =( Also, Alex, you might want to look at Yii also.
Russell Dias
All I can say is CI rocks!!
ggfan
@Russel Dias I might check out Yii. I'm reluctant to look at Code Igniter because I don't like the support for PHP4. I'd rather do everything the PHP5 way.
alex
It supports it, but only for the application / system folder as CI doesn't support modules like kohana does.
Matt
CI does not have a cascading filesystem, not in the sense that Kohana does. CI relies on using prefixes (`MY_Class`) to create extensions. It does not support modules, all extensions are placed within the application.
shadowhand