alex
alex

Reputation: 490433

Any other PHP frameworks use a cascading file system?

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.

Upvotes: 3

Views: 686

Answers (2)

Naatan
Naatan

Reputation: 3464

Not sure why you marked Codeigniter as your solution, as it does not have a cascading file system at all. Sure it mimics one with the Controller setup, but it pretty much ends there.

I'm guessing you were either not sure what you were looking for or didn't check to see if Codeigniter actually met your requirement.

Either way, take a look at FuelPHP, a framework inspired by both Kohana and Codeigniter.

It adopted Kohana's cascading file system and used PHP 5.3's new features such as namespaces, meaning you can't use it on older versions of PHP.

Though it's still very new I've already used it on one project myself and was quite pleased with it. The only thing I didn't like is the ORM they used, which is the same one Kohana uses. It's a strong ORM but it's not very intuitive to use.

Upvotes: 2

Sarfraz
Sarfraz

Reputation: 382806

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

Upvotes: 3

Related Questions