English 中文(简体)
How strong CodeIgniter is comparing to Zend Framework? especially for developing a hotels directory portal
原标题:

When I decided to start using php framework, I have gone for CodeIgniter because of I didn t have much learning time, I had strict project dead-line. I actually wanted Zend Framework so much. I m happy with CI so far... But I m about to start a big hotels directory project like kayak.com . My project will not have so big db of course, but structure will be similar.

Now I worry if I make mistake to start such project with CI :-S Would it be pain in ass at the project development process. I m not sure how strong and reliable CI is for such projects :/

I appreciate advices so much!! thanks!!

最佳回答

Both have there pros and cons, ZF is a much stricter framework the CI, in that CI themselves say that you need not use models (which is a bad habit to get into). Zend has far greater supporting libraries, the authentication libraries for CI are pretty poor to be honest, while zends authentication is pretty, it comes with an ACL library as part of its core. My choice would be Zend.

====In response to your comment=====

I would think that if you have used CI then you have some knowledge about MVC even if you CI has put you in a habit of using it badly. Zend has amazing documentation and support so any stumbling blocks you may reach in the convertion from CI to Zend would easily be solved. It may cause a few sleepless nights, but surely that is small price to pay for adding another feather to your cap?

问题回答

I use Codeigniter in sites with average 65.000 access by day, if you know how to use cache systems, and you know how to optimize your databases structure and topology. Well CI is very very good, easy to install, fast, good and active comunity and not heavy.

Regards,
Pedro

My advice is to stick with what you know, that is the best way to get the project done. Since you already did a project with CI you should know CI better :)





相关问题
PHP Framework: Ebay Like Site

I am going to be builiding a site like ebay - with all the features of ebay. Please note my payment method is limited to paypal. What would be the best PHP framework to use to build this quickly, ...

What s the proper MVC way to do this....?

Quick question about general MVC design principle in PHP, using CodeIgniter or Kohana (I m actually using Kohana). I m new to MVC and don t want to get this wrong... so I m wondering if i have ...

Check session from a view in CodeIgniter

What is the best way to check session from a view in CodeIgniter, it shows no way in their user guide, otherwise I will have to make two views on everything, which is kinda weird...still a newbie to ...

Using SimplePie with CodeIgniter and XAMPP

I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer. I am trying to make use of SimplePie. I followed all the instructions I could find: a copy of simplepie.inc is in my applications/...

CodeIgniter adding semicolons

How do I stop CodeIgniter adding semicolons ; to data sent via POST that contains ampersand &? For example it is converting "a=1&b=2&c=3" into "a=1&b;=2&c;=3". From looking on the forums ...

Best way to make Admin pages in CodeIgniter?

I m working on an app in CodeIgniter, and I want to have admin pages for several of the objects in the application, and I m wondering what would be the better way to put these into an MVC structure. ...

CodeIgniter form verification and class

I m using the form validation library and have something like this in the view <p> <label for="NAME">Name <span class="required">*</span></label> <?...

热门标签