20 Common PHP Job Interview Questions and Answers
I've been interviewed by many companies for PHP development positions, every company has a slightly different interview process, but there seems to be a lot of commonalities among them. I've outlined below the main areas that companies look for knowledge in, and some questions/answers you may get asked. At the end of the day you will not be able to entirely fake your way through a good interview, but I thought this would be a huge help for newer or mid level developers going into an interview. If you are totally new to PHP or programming www.teamtreehouse.com is a great place to start. Don't forget to Follow @TaylorHawkes me on Twitter so you can stay up to date with whats going on in the PHP world.
- What is Object Oriented Programming?
- In PHP what is the difference between a Class and an Interface?
- What is MVC?
- Explain how a PHP session works?
- What are some of the big changes PHP has gone through in the past few years?
- What is the difference between $_GET and $_POST
- In a PHP class what are the three visibility keywords of a property or method?
- What is Polymorphism?
- How do you load classes in PHP?
- What is the value of "$day" in the below code?
- What is the Scope Resolution Operator?
- What are some PHP Design patterns you have worked with?
- What is the difference between single quotes and double quotes?
- What does ob_start do?
- What does "&" mean in '&$var' ?
- What is the meaning of a final class and a final method?
- Does PHP support multiple inheritance?
- What are some magic methods in PHP, how might you use them?
- Are objects in PHP 5 passed by value or reference?
- What is the difference between $var and $$var?
likelihood high
This is usually a pretty open ended question. You should understand classes (objects are instantiated classes), abstract classes, interfaces, methods, properties,inheritance, multiple inheritance as well as why OOP is helpful as compared to procedural programming.
likelihood high
Interfaces do not contain business logic, only method signatures that define a template that any classes implementing the interface must contain.
Lets take an auto mobile for example. If we were to create and interface for a car we would want to define a few methods like drive, stop, turn left , turn right. This mean that any vehicle that is a car (aka implements the interface car) must have methods for these things, If they do not PHP will throw an error. So if your car is an BMW , Honda or Ford it must be able to stop. How it stops is up to each car (or PHP class) but it must be able to stop. Technically we can decide not to use an interface for cars, but then some types of cars are not forced to have a "stop" method.
likelihood high
Most programmers know this, but interviewers will likely look for a deep understanding of MVC, and some explanation or examples on how/why/ when you used it.
MVC- Model, View, Controller - is simply a way of organizing your code into 3 separate layers each with there own job.
Model - Usually contains data access code and all of you business logic code.
View - Contains markup/design code, generally html,xml, json.
Controller - Usually contains very little code, just whatever is needed to call the Model code and render the View code.
MVC- Model, View, Controller - is simply a way of organizing your code into 3 separate layers each with there own job.
Model - Usually contains data access code and all of you business logic code.
View - Contains markup/design code, generally html,xml, json.
Controller - Usually contains very little code, just whatever is needed to call the Model code and render the View code.
likelihood high
A PHP session cookie is set in the clients browser, on every request the client sends that cookie to the server. PHP then uses that cookie to select the corresponding session information. By default PHP session_start() will store session data in files, you can also store sessions in a database.
likelihood high
There are a number, but the big ones people are looking for are:
a. PHP 5.0 realised the object model (AKA OOP).
b. 5.1 added PDO - for accessing databases.
c. 5.3 - added namespace support and late static bindings.
a. PHP 5.0 realised the object model (AKA OOP).
b. 5.1 added PDO - for accessing databases.
c. 5.3 - added namespace support and late static bindings.
likelihood high
This is a great question because an interviewer can tell how deeply you understand HTTP and the request/response. If you don't have good understanding of HTTP protocol, google around and get a grasp on it.
Good answer
Explain the HTTP protocol and how every request contains a method, generally(GET,POST,PUT,DELETE) and what each method signifies.
Bad answer
$_GET stores variables passed in url as query strings. $_POST stores variables past from using method = $_POST
Good answer
Explain the HTTP protocol and how every request contains a method, generally(GET,POST,PUT,DELETE) and what each method signifies.
Bad answer
$_GET stores variables passed in url as query strings. $_POST stores variables past from using method = $_POST
likelihood medium
public, private and protected. The default is public.
Public -> Any class may instantiate the class and call the method or property.
Protected -> Only the class itself or inherited (children) classes may call a method or property.
Private -> Only the class itself may call a method or property.
Public -> Any class may instantiate the class and call the method or property.
Protected -> Only the class itself or inherited (children) classes may call a method or property.
Private -> Only the class itself may call a method or property.
likelihood medium
Don't get scared by the big word. It's simply the idea that one object can can take on many forms. So in PHP OOP one class "cars" may have two classes that extend it, for example a "Honda" class and a "BMW" class.
likelihood medium
They are trying to gauge your understanding of how class auto loading works. Review the "autoload" and "spl_autoload_register" function (note:you should use the later). The autoload function basically triggers a function when a class is instantiated, you can put whatever logic you like in it but generally you want to include the class file based on some sort of naming convention.
likelihood medium
$wed= 1; $day = ($wed==1) ? 'today' : 'tommorrow'; // $day is now set to 'today'Companies often ask about the ternary operator (?). which is simply a shorthand for if else statements.
likelihood medium
"::" double colons is the scope operator it is used to call methods of a class that has not been instantiated. You should also understand static methods and how they differ from regular methods.
likelihood medium
Design patterns are simply commonly used techniques within your code, they often are implemented in different ways so they can be a bit tricky to grasp without writing them yourself. If you are unfamiliar with them I would start by learning the Singleton Pattern and the Strategy Pattern.
likelihood medium
Great answer at below link.
likelihood medium
Makes it so PHP does not output anything.
Companies ask this because many large frameworks wrap a bunch of code in ob_start() and ob_get_clean(). So understanding how that function works is pretty important.
likelihood medium
'&' indicates a reference
likelihood medium
Final keywords indicates that the class or method cannot be extended.
likelihood medium
No. You should understand what multiple inheritance is.
likelihood medium
Magic methods are basically triggers that occur when particular events happen in your coding.
__GET, __SET are magic methods that are called (behind the seen) when you get or set a class property.
likelihood medium
This is basically a trick questions. To understand how they are passed you need to understand how objects are instantiated. Study the below link:
likelihood medium
$$var sets the value of $var as a variable.
$day='monday'; $$day='first day of week'; echo $monday; //outputs 'first day of week'