open source, object-oriented web application framework implemented in PHP.
31
votes
7answers
22k views
Why is Zend Framework so complicated?
I am web developer and have experience of developing several web applications in PHP. I have an idea of developing a product for myself and decided to use a MVC based framework because I really like ...
0
votes
3answers
412 views
Familiarizing with the Zend Framework in one week [closed]
You are conversant with the ZF?
How would you go about getting familiar with it in one week?
What would be your suggested schedule?
13
votes
7answers
1k views
How do you keep track of large projects?
When dealing with a project that has many different files, I always seem to loose track of how the parts interact with one another. I've never really had much of a problem understanding smaller ...
8
votes
1answer
2k views
What is Zend's relationship with PHP?
What exactly is Zend's relationship to PHP? I don't mean the framework but the company itself. Are they the gatekeepers or guardians of sort?
I've just been reading up on PHP, and other than ...
0
votes
1answer
237 views
Is this a good service locator, and is this service locator pattern(?) OK?
I'm working in Zend framework 1 and was using Zend_Registry to store objects so that I could replace them in my controllers while unit testing:
$auth = Zend_Registry::get('Auth'); // set in ...