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

Are there any good free PHP competency tests out there? It's easy for someone to say they code in PHP, but depth and understanding of how lowerlevel parts of the language are parsed and executed is much different.

Something that asks good questions, perhaps elicit the person to write some sample code solutions to particular problems.

Ideas?

share|improve this question
8  
Are you going to create your own competency test? Or to use some online service? If second, I can suggest tests4geeks.com They have PHP test and combined PHP + MySQL test. – Vadim Mar 31 at 14:17

closed as not constructive by Bo Persson, Lord Torgamus, SomeKittens, Ben, brenjt Oct 22 '12 at 19:31

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.

7 Answers

Ask them to write an absolutely trivial ‘Hello, $name!’ example that also stores the user-input names to a database.

If they manage to do it without HTML-injection or SQL-injection security holes you've already got someone in top ten percent of PHP coders. If they manage to include proper indenting and maybe a comment then wow! It's a superstar.

I'm not even joking.

share|improve this answer
8  
+1 for helping me realize that I'm in the bottom 90%. – John Jan 15 '10 at 22:43
1  
Reminds me of the fizzbuzz problem. – todofixthis Jun 10 '11 at 1:52

In the Stackoverflow podcast #79 a service called Codility came up:

There is a website that conducts programming tests on the internet for you at Codility, but we’re skeptical this can actually work without the one-on-one human element of observation.
I think it's probably as good as such automated tests can be but agree on the missing human element. It was more fun to solve the test problem in the worst manner that still gets you a score of 100 than to solve it as fast/good/elegant as possible.
edit: oh, and it's not for free...

share|improve this answer

http://www.proprofs.com/quiz-school

Timed tests. Hard questions. Not just multiple choice but short essay too. Make your own or choose from large list of created one s.

I happened to find it last night. I took a C# test. Man, do I need to study more!

share|improve this answer

A certification is pretty much a test.

Check out the ZEND certification for PHP.

http://www.zend.com/services/certification/

edit:

Here is free resource: PHP Interview Questions and Answers.

http://www.techinterviews.com/php-interview-questions-and-answers

share|improve this answer
I think the OP mentioned "free" too. :-P – Chris Jester-Young Jan 15 '10 at 21:36
OP asked for free – Mark Elliot Jan 15 '10 at 21:37
This does not work for us. We are a startup and need something that we can send people to first step, to help weed out those that do not have enough experience, etc. Thanks for the suggestion however. – Spot Jan 15 '10 at 21:38
2  
Certifications re great if you want to hire someone to pass certification tests for you. – Alan Storm Jan 15 '10 at 21:47
1  
As a ZCE, I would personally be think that someone who's willing to throw down over $100 of their own money to prove they know what's-what about PHP is probably good, but I might be biased =P. I think most of the ZCEs have spent their own money as the cert is mostly useful for landing interviews and jobs, so few employers are willing to drop cash to help you leave their company. I will also concede, though, that the actual content of the PHP exam was, in almost all cases (except security) irrelevant, and related to your ability to read-and-eval code which I would call "academic" at best. – Dereleased Jan 16 '10 at 2:46

Google for "Zend Mock Exam Questions". This will bring up results like this forum thread with questions from the online Mock Exams that are supposed to prepare you for the Zend Certified Engineer exam.

However, if you send applicants questions like this, there is very little that would hinder them from simply googling the answers though, so I find little value in that. Basically, if you got an idea what you are looking for in your applicants, you should be able to ask them the right questions.

share|improve this answer

What about the W3Schools one? It's free.

share|improve this answer
2  
Given the awful quality of their PHP tutorial, I'm not sure I'd trust their exam much. – bobince Jan 15 '10 at 22:22
Perhaps, but don't you get what you pay for? (BTW long live Tony the Pony!) – John Jan 15 '10 at 22:38
1  
We are all poorer since Tony left us, with only the comparatively-lacking Jon Skeet for company! – bobince Jan 15 '10 at 23:04
1  
[I had a look at the test... it's fine, no errors in it, but it is very basic.] – bobince Jun 11 '11 at 10:42

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