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. :)
 
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:
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.

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:
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:
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