Before get into zend framework project, let's understand a few things about ZF.
The core of ZF is a loosely coupled application framework that consists of a library of components.
These components are well written in object-oriented PHP. They can be used independently. It means that, you need to include those libraries which are required for your project, not to include all library of ZF.
Install Zend Framework
--> For Windows :
--> For Linux (Fedora) :
The core of ZF is a loosely coupled application framework that consists of a library of components.
These components are well written in object-oriented PHP. They can be used independently. It means that, you need to include those libraries which are required for your project, not to include all library of ZF.
Install Zend Framework
--> For Windows :
- Download latest ZF from official site of Zend Framework.
- extract that folder. "ZendFramework-1.11.11-minimal"
- open file in command tool,
- cd ZendFramework-1.11.11-minimal / bin / zf.bat
- type : zf --help
--> For Linux (Fedora) :
- login as a root user from terminal.
- Type These all commands : "rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm"
- rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
- yum --enablerepo=remi install php-ZendFramework
- type : zf --help
Now, In next tutorial I'll explain you, how to create project with ZF on NetBeans.