Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're having a PHP freelancer come by next week, and are assuming he knows his way around PHP. But of course, we would like to make sure. What questions would you ask a candidate in a PHP job interview?

Would you have them write some sort of bubblesort op paper, without the aid of a computer? Would you ask array-specific questions, OOP or SQL? I'd be interested to know how to pick out the good (PHP) programmer, without scaring them off with too many detailed questions.

share|improve this question
1  
Is it necessary to test the candidate on live interview? If no, you can use the online service http://tests4geeks.com Their PHP test has questions about OOP, Arrays, Get, Post etc. And if you want also to test sql skills, they have combined PHP + MySQL test. – Vadim Apr 15 at 10:19

closed as not constructive by casperOne Nov 30 '11 at 2:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 59 down vote accepted

First, I wouldn't be worried about asking questions that are too specific or asking too many of them.

As an example of why specific questions are important, when I was interviewing for my current position the bulk of the interview (at least an hour) was spent going over various programming questions.

I was asked to write the following code examples on a white board for scrutiny or answer these questions:

  • What is POST, GET, SESSION and how do they differ
  • Simple Select Statement
  • Select Statement with Joins and a Where Clause
  • Example of recursion (specifically removing slashes from $_POST)
  • Example of connecting the database, executing the query, and then outputting the result

Now when I interview I also ask questions like these:

  • What is inheritance? polymorphism? encapsulation?
  • Show an example of inheritance
  • Are you familiar with Model-View-Controller
  • What data abstraction patterns have you employed? Please demonstrate
  • What frameworks are you familiar with? What did you like / not like about each

At the same time I was interviewing, my old boss was interviewing applicants to take and my place and he did so without a programmer present at all. As a result they ended up with a guy that didn't know how to separate his php code from his html tags.

The more specific you are during the interview, the more pleased you'll be later. As someone once said regarding marriage, "during courtship keep your eyes wide open." And I believe that the same is absolutely true when looking to hire a new programmer.

share|improve this answer
That second set is right on target. – Abyss Knight Nov 20 '08 at 15:50

What are some of the shortcomings of PHP that you've experienced and how did you deal with it?

share|improve this answer
14  
Wow. That's going to be a long long interview. :-) – PeeHaa 埽 Jun 7 '12 at 11:37

It is my opinion that what should be accomplished in an interview is not an A to Z question and answer session trying to find every tidbit of PHP knowledge one has. There should be some well thought-out technical questions, not designed to show their flashy skills, but designed to expose the interviewee's thinking power.

For example:

Ask the interviewee to solve a technical problem, such as, "Given an array of integers from 1 to 1 million, write a function to determine which integer is missing in the range." At this point, give them a pen and paper (or white-board) and let them actually try to solve the problem. Don't rush them for time (but don't let them take all day either). You can prod them with ways to go about it, but above all make sure they are solving the problem. You can learn a lot about a programmer by how they deal with seemingly trivial problems, and how they deal with writing code under pressure.

Once you have finished that portion, ask them to optimize the code for speed and efficiency. If they had to cut the processing time by 25% or even 50%, how would they do it. At this point, it could just be conceptual. You may not even have a way to solve it yourself immediately, but this is irrelevant. Make the programmer THINK! I've found that when you ask questions that make a person step back and think, you learn much more about them than their resume or a "tell me why you're a good programmer" question will ever reveal.

As a side note, one question I have yet to ask in an interview (but can't wait to get the chance) is this:

"Having seen Google Maps, how would you duplicate or enhance the software design (objects, data structures, web services)?"

It's a super abstract question, and the actual answer doesn't really matter, I'm more interested in how they approach it.

share|improve this answer
What if someone answers this question correctly immediately as far as an efficient algorithm? There is an easy to implement algorithm that runs in O(N) time. I'm not sure if you could do better than that. – hsanders 20 hours ago
  • When have you created your own OO code in PHP? (The answer will help you learn not only if the interviewee understands OO, but if they understand its limitations in the context of PHP.)

  • What optimization runtimes do you use with PHP? Can one combine them? Do you?

  • What was the single biggest bottleneck you removed from PHP code, and how did you find it?

  • When is it appropriate to shove PHP code into the template (e.g., Smarty) layer of the app.

  • What is an SQL injection? How do you avoid it?

  • Tell me your favorite IE6 nightmare story and how you solved it.

share|improve this answer
2  
Haha, I like your last point, "tell me your favorite IE6 nightmare story"! Thats a good one! :D – Sebastian Hoitz Nov 20 '08 at 16:12
3  
That last one isn't really specific to PHP though... well maybe for some of IE's weird behaviour with POST'ing button elements. – alex Mar 6 '09 at 6:29
> isn't specific to PHP Quite right, but in practice, ability to deal with IE6 is a major part of PHP programming,even though it is not part of the language. – Joshua Fox Mar 6 '09 at 13:08

"What are some of the shortcomings of PHP that you've experienced and how did you deal with it?"

This is the BY FAR best question to ask I've ever heard since it shows that the candidate (if he can answer) knows more about system development then his "last PHP book"...

And the reason is that only a "thinking" person (and experienced in more than one programming language - which should be a qualification) can answer that question...

Though since few programmers will be able to give great answers to such a question, I wouldn't necessarily dismiss the candidate based on his inability to answer it, but I'd definitely prefer one being able to answer ;)

share|improve this answer

50% of the companies are asking to write bubblesort on their interviews. So candidate can just learn this trick. But it does not mean that candidate is really good.

If you want to validate the PHP skills and do not want to scare the candidate on live interview, ask him to take online skill test at home:

http://tests4geeks.com/test/php-mysql

It has PHP and MySQL questions. If the candidate will have good result, invite him to the interview and ask about his experience. Ask about most complex projects, which he took part. Ask about technologies, that he used.

You will build your impression of candidate on the live interview. But online testing could be very important step prior to interview. At least you'll know that his knowledge is good. On the other hand it will allow you to save time, if the candidate has bad skills.

share|improve this answer
If a candidate bubble sorts for a sorting question on an interview unless the question is "Write bubble sort" I won't hire that guy. – hsanders 20 hours ago

I would initially concentrate on security related features. If they don't understand the following then they've no place developing PHP code:

  1. Why is register_globals bad?

  2. What is a SQL injection attack

  3. How do you avoid them?

share|improve this answer

Ok, a more serious answer.

The truth is, you don't need to do much to test his knowledge of PHP in specific. Understanding PHP is arguably a rather small part of being able to write robust and sound web applications.

What you really need is someone who understands how networks (especially TCP/IP) work, how web serving functions, the basic communication protocols that the web are built on, the dangers of accepting data from unverified (and verified!) sources, etc.

In other words, you want someone with coding experience who understands the underlying mechanisms by which the internet functions. Someone with web design experience can rattle off a list of potential security vulnerabilities. Only someone with a thorough understanding of how web communication functions can identify new vulnerabilities.

(And frankly, with any sufficiently advanced web program, chances are you'll create a new vulnerability. Sure, it'll be a new coat of paint on an age-old issue. But only someone with deeper understanding sees past the paint job.)

share|improve this answer
5  
Why can't you guys stop talking bad about PHP? It's not such a bad language anymore especially with PHP 5 many OOP features got introduced that allow you to develop complex object oriented applications. Yes there are many bad PHP scripts from newbies but I'm sure there also are from other languages. – Sebastian Hoitz Nov 20 '08 at 16:17
4  
Full ack. PHP isn't that bad - but the fact that you need to find a good software developer and not specially a php developer is also true, it think that's what Jason L wants to say. – Patryk Kordylewski Nov 20 '08 at 16:34
That might be true. But when reading his other post before it did not seem like it though. But you totally need to find a developer who understands writing good software! – Sebastian Hoitz Nov 20 '08 at 16:37
Oh yes, i didn't saw his first post at first. The post gets the voting it deserves :) – Patryk Kordylewski Nov 20 '08 at 16:47
Actually, from the perspective of language design, PHP is a mess. My other comment was tongue-in-cheek and I didn't expect it to be taken so seriously, hence the parenthesis. But frankly, for me, if someone can't see the flaws in PHP's design then they're not that solid a programmer. – Jason L Nov 21 '08 at 15:41

For me, I'd ask the following:

  • Demonstrate the use of variable variables and explain a case where they would be useful. (Or, if the terminology stumps the candidate show an example and ask them to trace it.)
  • Run them through a few standard interview questionnaires if you have access to them. The Disney Web Developer & Software Engineer questions are excellent. Basically, cover everything from the basics of JavaScript, Web Standards, CSS, and even some PHP. A good, basic PHP question to see how they find all numbers divisible by 5 for n=1 to 10. If they don't use the mod (%) operator then ask why.
  • Ask them what database abstraction layers they have used and if they have ever used a prepared statement. If so, ask them why. If they can't tell you why, then you have a problem. Security is something that can be easily ignored, but knowing is half the battle.
  • Frameworks. Sure, every candidate will name 12 different frameworks they have worked in. What if they haven't worked in a framework? What if they have never worked outside a framework? These are things you need to know depending on the code the freelancer will be working on.

Just a few ideas, but hope that helps. :)

share|improve this answer
7  
I've been wanting to add this comment for a while, finally got my 50 points (yaay!!). I know what variable variables are, but I really cant think of an instance where they would be useful. I'd appreciate it if you can give me an example. Thanks! – sjobe Jun 3 '09 at 13:26
Wondering if the Disney Web Developer & Software Engineer questions are available somewhere online? I can find bits and parts through google but nothing comprehensive? (if I were disney i would put them online but you never know eh :D) – ChrisR Dec 12 '11 at 15:20
You would've to ask me why I didn't use %-operator: $i = 5; while ($i <= 10) { $result[] = $i; $i += 5; }. Was my first idea and it's way faster than a for loop. ;) – insertusernamehere Mar 14 at 17:47

Also can be asked about:

  • PHP Frameworks (If he used one - Zend Framework, Cake)
  • String manipulation (He can explain concatenation)
  • Security (SQL Injection, XSS)
  • Client side programming (Javascript, Ajax).
  • Some PHP's built-in functions.
share|improve this answer

Did a little searching:

PHP Questions from Yahoo Interview: http://www.nickhalstead.com/2007/05/23/php-interview-questions-from-yahoo/

Others: http://vijaymodi.wordpress.com/2008/01/25/php-interview-questions-and-answers/ http://www.geekinterview.com/Interview-Questions/Programming/PHP

share|improve this answer
The first link is broken now. – Eduard Wirch May 25 '11 at 9:15
@Eduard Wirch, Looks like he burned his archives. – Derek May 25 '11 at 18:31

I would definately also ask for security related questions such as how to execute intrusion safe SQL queries, prevent XSS attacks etc.

He should better also know his way around in modern frameworks and know good coding practices, such as Model-View-Controller and some design patterns that are relevant to PHP developers (Singleton, Registry, ...)

You should also make sure, that the developer has a solid foundation in HTML, CSS and JS. Even if they develop PHP most of the time they almost always have to do some HTML, CSS and eventually JS, so these are some things you can also ask for:

  • structured markup
  • valid xhtml + css
  • cross-browser compliance understanding
share|improve this answer

protected by YOU Mar 28 '11 at 7:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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