vote up 2 vote down star

It's hard for me to imagine a php script that is more than a few hundred lines of code. It seems that, for a non-persistent environment, web-based scripting is usually done is small chunks and used for the purpose of delivering a portion of a website to the end user. I'd like to know if people are developing any type of large, or persistent, or complex apps with php, and what is it exactly you are working on. I've only done small projects for small websites, so I don't know what can be accomplished on a larger scale. It would also be nice to know what libraries you are using, and what other technologies you are integrating with. Please enlighten me so I can start to dream of bigger things!

flag

0% accept rate

9 Answers

vote up 10 vote down

I would look at some of the well-known open source web apps that use PHP to get a good sense of what can be accomplished, and how PHP is used in each of them. The advantage is that since they are all open source, you can actually look at the PHP code to see how various functionality was implemented.

Some good examples to look at include:

Also look at some of the popular frameworks to see what kind of functionality they offer (this should give you a good sense of what types of things PHP is most often used for):

link|flag
1  
Ugh, PHP-BB should not be on that list. Never before have I seen so many security vulnerabilities packed into such few lines of incomprehensible spaghetti code. – John Millikin Oct 6 '08 at 3:06
ROFL, that is SOOOO true, I have an app with 3000+ and I've had everything you can imagine thrown at it with no issues yet. – Unkwntech Oct 6 '08 at 3:36
1  
Maybe move PHPBB to "Good to look at so you know what NOT to do" – Unkwntech Oct 6 '08 at 3:36
Haha, good to know - I'll add a note to that one. – Wilco Oct 6 '08 at 6:51
I'll also say Wordpress' code isn't too crash hot. I'd say better to look at the Zend Framework. – alex Aug 24 at 5:32
show 2 more comments
vote up 2 vote down

The biggest problem developing large scale programs is definitely keeping them maintainable in the long-term. Initially, a program starts out all full of ideal methods and ideas, but keeping the integrity intact, especially, over time fails, in my opinion, more often than not.

In addition, scope creep is your enemy. You HAVE to reign that in ASAP.

As far as large scale programs go the company I work for has a few internal programs constantly under development. One example is our proprietary website engine. It's a very large code-base that includes a dozen modules (user management, survey system, blogs, user galleries, etc) that allows us to build our clients sites rapidly.

We also develop our own internal project management program for managing our clients work.

You should definitely be thinking in terms of scale in the long term. In almost every project I've worked on there's a permission/group element for users involved. You might want to start thinking about the possibilities and issues involved in that and work up to more complicated functionality.

link|flag
vote up 1 vote down

MediaWiki is one of the largest public PHP apps, and it's got very nice code. . I know some larger ones, but they're utterly awful and you'd learn nothing by reading them.

link|flag
The MediaWiki code base is ok until you decide to extend it. I've been doing NLP research with it so i guess my view point is skewed by the complexity of my problem. – Erik Schulz Oct 8 '08 at 15:40
vote up 1 vote down

There are lots of complex OpenSource php applications. For example, the Drupal CMS, which can be considered a platform in its own right for developing other web sites.

You can browse through the source code online: http://cvs.drupal.org/viewvc.py/drupal/drupal/

link|flag
vote up 1 vote down

+1 for Wilco
I have a software I use for some of my clients, it's a CMS, Blog, eCommerce beast, the code base is HUGE, but everything cooperates with each other nicely.

link|flag
vote up 1 vote down

For my day-job we run everything in PHP - our front-end website, our backend for agents and employees, inventory, server control interfaces, etc. These are everything from spiffy new AJAX-enabled Zend Framework apps to legacy code that we haven't ported yet. On top of that we use things like Mantis (bug tracking built in PHP), Mediawiki, and phpMyAdmin.

The only thing that isn't PHP are vendor apps because vendors love Java. The one ASP.NET application we have was actually abandoned by the vendor during the project (not really a knock against ASP.NET, that app was just the perfect definition of a runaway project and would have failed no matter what language it was written in).

With mature frameworks like Zend Framework, CodeIgnitor, and CakePHP creating just about anything in PHP is possible.

link|flag
vote up 1 vote down

My company works on educational software. We've recently started doing web-based content delivery, including video and audio, with the backend written entirely in PHP using MySQL. We have two primary apps, one which lives on our servers and one which is delivered to the customer. One clocks in at ~42,000 lines of code (using a physical line count) and one at ~68,000 lines.

We use PEAR extensively and a recently started project is using the Zend Framework.

link|flag
vote up 0 vote down

Get CodeIgniter and rebuild Amazon or Ebay. If you can dream it you can build it in PHP but you might not be able to maintain it because it is so easy to created bad code that works. PHP.net is your friend. Whatever framework you use make sure your read the User Guide and let it guide you.

link|flag
vote up 0 vote down

I can't believe nobody has mentioned the MVC pattern yet. IMO, it's one of the best things you can use to help you maintain large codebases.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.