1.2.5 Simpler development
As we have noted, one of PHP??™s strengths is that developing simple dynamic web pages is very easy. This has
enabled millions of people to have fantastic websites who may not have had them otherwise. The ability of
PHP programmers range from people who are beginners to programming through to enterprise developers
needing to meet their deadlines. The Zend Framework is designed to make development simpler for every type
of developer.
So how does it make development simpler? The key feature that the framework brings to the table is
tested, reliable code that does the ???grunt??? work of an application. This means that the code you write is the
code you need for your application. The code that does the ???boring??? bits is taken care of for you and is not
cluttering up your code.
1.2.6 Rapid Development
The Zend Framework makes it easy to get going on your web application or add new functionality to a current
website. As the framework provides many of the underlying components of an application, you are free to
concentrate on the core parts of your application, rather than on the underlying foundation. Hence, it is easy to
get started quickly on a given piece of functionality and immediately see the results.
Another way the framework speeds up development is that the default use of most components is the
common case.
Pages:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25