Search Results

1
vote
2answers
333 views

Testing form inputs in PHPUnit

What's the best way to test $_GET and $_POST inputs in PHPUnit? I have a class that sanitises input and want to check that it works correctly when processing bogus …
0
votes

What is the best way to access a database from PHP?

Use an MVC structure and a database abstraction layer. This way you can go to one place to completely rework the internals of a data access class whilst keeping the public interface constant. …
3
votes

What is the best PHP programming book?

I like Schlossnagle's Advanced PHP Programming. It's a great reference with good worked examples for things like se …
0
votes

Directory layout for PHPUnit tests?

I put my test cases next the the source in a file with the same name but a .phpt extension. The deployment script simply filters out *.phpt when they push to production. …
1
vote

Advice on Splitting Up an Application

You could split it into four SVN projects - one for each of the three apps and the fourth for the rest of the code. You can then define this shared code as an external for each of the individual a …
7
votes

PHP MVC Learning Suggestions

The Symfony documentation has a good explanation of MVC in PHP. It works an example from procedura …
0
votes

PHP development environment best practices

If you are working from the command line, using Git's SVN module eases most of the SVN pain - it handles de …
0
votes

Indenting for code-generation

I the PHP/HTML situation I try to keep each code fragment consistently indented in its source code. This keeps the code readable where it really matters and usually has the side effect of …
6
votes

How do you manage PHP Project Development Lifecycle?

This is how we manage our commercial site: Develop in a local sand box Check-in to SVN Automated build/test from SVN onto internal dev server Scripted deplo …
4
votes

How to wean myself from FTP in favor of Version Control

For the file uploads, what you are looking for is rsync. There is a Windows wrapper for this called …
1
vote

Is Symfony a better choice than Zend for a web development shop (10+) because it is a full stack framework?

Symfony is really easy to use and can get a fully functional site with sessions, caching, unit and functional testing, automated deployment and more up and running in a very short amount of time. …
0
votes

PHP Frameworks - Layout Dynamic Menu

Symfony can do what you are looking for using a mix of concepts. Layout - This is the main structure used to decorate a page. Template - This is the main view attached to a U …
0
votes

Cleaner way to translate index into specified string?

This gives a trap for initial values of vocation not found in your list. $vocations = array(1=>"Sorcerer", 2=>"Druid", ...); if (array_key_exists($vocation, $vocations)) { $ …