A question for php devs who work for a company

Soldato
Joined
4 Mar 2010
Posts
5,038
Hi chaps, just wondering if and which php frameworks you use for your projects?
Or do you have your own in-house codebase?

I'm asking as I have I'm pretty competent at php but I am wondering if it would be something that would be useful for me to learn for potential employment?

Any comments and suggestions welcome. :)
 
Zend is pretty good, version 2.0 is supposed to be coming out in the next few months which should be good as well. Big following and a good framework to build larger sites around.

The current version isn't quite as light weight as it could be but for a project of a reasonable size its no burden. Version 2.0 should make it much more modular and easier to implement in non standard ways such as cut down functionality.
 
Zend is more professional methinks. Codeigniter is better as a smaller but well done framework. I use codeigniter every now and then just for kicks. But apparently a lot of PHP people aim to become zend qualified.
 
A question about zend server I assume you have to use this for zend framework to run correctly? If this is the case is zend server quiet common to get from hosting companies?

Or is Zend server something else completely different?
 
Last edited:
Zend server is something else, its all a bit confusing but there is zend the company which do certifications and stuff, then theres the framework which is what you want to download. Its all php so you just include certain files and follow the correct structure and away you go.

just go here http://framework.zend.com/download/latest

and download the minimal or standard with zend server.
 
Thanks for that.

I have never used an MVC before is there anything I should be aware of when coding in this manor? Will I have to think about writing classes in a different way?
 
We use Zend where I work for a couple of projects. Zend Server is a great way to get up and running with Zend Framework as it comes bundled with everything such as Apache and is preconfigured with the framework.

Zend server is not required for the Zend framework, you can stick a Zend Framework project on a bog standard PHP host as long as you have a copy of the framework in your application include directory.
 
We use Zend where I work for a couple of projects. Zend Server is a great way to get up and running with Zend Framework as it comes bundled with everything such as Apache and is preconfigured with the framework.

Zend server is not required for the Zend framework, you can stick a Zend Framework project on a bog standard PHP host as long as you have a copy of the framework in your application include directory.

Thanks Rob, what hosting company do you use for the zend server when the project goes live and what do you use when not using Zend?
 
Last edited:
Thanks Rob, what hosting company do you use for the zend server when the project goes live and what do you use when not using Zend?

We actually use a hosted cloud server running Ubuntu with the Zend Framework installed, the project is then served up by the main Apache instance we run on them which is also serving up our main application. The Zend Framework PHP stuff is an extension of our main application which is written in python and currently in a legacy python framework which we are supporting.

I would imagine pretty much any decent host with PHP support should be able to support the Zend Framework, after all it's only a collection of PHP files that you include.
 
We actually use a hosted cloud server running Ubuntu with the Zend Framework installed, the project is then served up by the main Apache instance we run on them which is also serving up our main application. The Zend Framework PHP stuff is an extension of our main application which is written in python and currently in a legacy python framework which we are supporting.

I would imagine pretty much any decent host with PHP support should be able to support the Zend Framework, after all it's only a collection of PHP files that you include.
Impressive! Makes my brain bleed :D
 
Right I decided to download Zend Server CE as it turned out xampp had an old version of zend framework installed and I didn't want to bugger up my installation. Is there a way to share my httpd-vhost from xampp with zend, how would I point to it?
 
Last edited:
Yeah, you can just stick the library directory somewhere on a server and put that path into your include path and it will be available in all your future projects you decide to use zend for. There are some command line tools that you can install as well to allow you to create new project structures.
 
Ah It's one of two things either it didn't install with the typical installation or as I'm running phpmyadmin with xampp it's not letting me have to versions so I will have to running phpmyadmin via xampp then boot zend server.

Reinstalling now... :)
 
Back
Top Bottom