PHP Zend Framework Generator

I am in the training phase of the Zend Framework for developing PHP, I have been doing dirty PHP programming for about 2 years, and I learned a lot from my mistakes.

I was introduced to Ruby On Rails, it's a great structure, and Ruby is also a pretty interesting language, but not everyone wants their websites to be in RoR, at least not for all of my clients.

Therefore, as a result, I am doing a lot of PHP. While working on RoR, I found that the Zend Framework provides very similar functionality and environment, and therefore I am very excited about the same.

However, I am interested to know if there are any โ€œgeneratorโ€ scenarios that will help you generate / automate common tasks in the process, such as creating a project structure, creating a model, creating a controller, as in RoR?

If such a thing already exists, itโ€™s big, otherwise Iโ€™ll continue and build such scripts, since Iโ€™m very sure that they will come in handy, especially for me.

+6
php zend-framework
source share
4 answers

Zend Tool is your friend!

+10
source share

I made some code snippets and file types in the editor (netbeans) to help me with automation. You can take a look at zend studio, which has built-in integration for the zend framework, which works quite well, but its commercial and will mean switching the IDE, which is always a burden

+2
source share

I am working on a code generator for the Zend Framework that may be useful to you. It is based on the Qcubed code generator. Check it out at http://clintberry.com/2010/08/zend-framework-code-generator-with-scaffolding/

+1
source share

This is the best tutorial I've found. It explains how to start using the Zend Framework in stages. Zend Framework Tutorial

+1
source share

All Articles