5 Essential CakePHP Interview Questions *
Toptal sourced essential questions that the best CakePHP developers and engineers can answer. Driven from our community, we encourage experts to submit questions and offer feedback.
Hire a Top CakePHP Developer NowInterview Questions
What’s wrong with this multiple Model Validation rule? Will both, one, or neither rule be executed and why? How might this code be fixed?
'email' => array(
'rule' => array(
'rule' => 'notEmpty',
'message' => 'Email address is required.'
),
'rule' => array(
'rule' => 'email',
'message' => 'The email address you entered is invalid.'
)
)
The key 'rule'
needs to be unique when calling multiple validation rules. In the case above, the notEmpty
rule will never be called, as the email
rule will simply overwrite it (since the multidimensional array has the same key).
Each key should be unique, e.g:
'email' => array(
'rule-1' => array(
'rule' => 'notEmpty',
'message' => 'Email address is required.
),
'rule-2' => array(
'rule' => 'email',
'message' => 'The email address you entered is invalid.'
)
)
What is the purpose of $this->set();
when used in the Controller actions, e.g:
$this->set('articles', $articles);
Also, compare the above line of code to the following:
$this->set(compact('articles'));
What are the relative advantages of each? Which would you use and why?
The set()
method is used to create a variable in the view file. In the example above, the variable $articles
will then be available to use in the view template file for that action.
An advantage of the first example (i.e., $this->set('articles', $articles);
is that it allows the variable name on the view to be different from the variable name on the controller. For example, if you wanted them to be different, you could do something like $this->set('articlesData', $articles);
. The variable on the view file would then be $articlesData
.
The advantage of the second approach (i.e., $this->set(compact('articles'));
, on the other hand, is that it is somewhat neater, and it also is arguably a bit less error-prone. It is also shorter and easier to write, especially where we are setting several variables to the view.
In the following line of code, how could the Containable
behavior be used to optimize the find
query so that only the region
data is returned (i.e., without any model associations):
$this->Region->find('all');
The Containable
behavior allows the developer to specify which associated models (if any) are retrieved from the find
query.
So to ensure that no other associated models are returned in the above example, it could simply be re-written as:
$this->Region->find('all', array('contain' => false));
Apply to Join Toptal's Development Network
and enjoy reliable, steady, remote Freelance CakePHP Developer Jobs
A current alternative to the Containable
behavior is to use the recursive
function. Why is the use of the recursive
function below incorrect in a case where we want to only retrieve the region data without any model associations?
$this->Region->find('all', array('recursive' => 0));
The use of recursive
is incorrect in the above example (if we don’t want to pull any associated data) since recursive
works as follows:
-
-1
– No associated data is retrieved with thefind
query. - ` 0
– Retrieves any
BelongsTo` associated data. - ` 1
– Retrieves any directly related associations (i.e.,
BelongsTo,
HasMany,
HasOne,
HasAndBelongsToMany`). - ` 2` – Retrieves any directly related associations, and their associations’ associations.
So in the above, example, -1 should have been used (rather than 0) to avoid pulling any associated data.
It is also important to note that recursive
is slated to be phased out in CakePHP 3 and replaced solely with the Containable
behavior.
What is the difference between a Component, a Behavior, and a Helper? Provide an example of where and when each might be used.
All 3 are similar because they act to extend existing CakePHP functionality, but the differ on what they extend:
- A Component is used to extend a Controller
- A Behavior is used to extend a Model
- A Helper is used to extend a View.
For example:
- A shopping cart
Component
might offer functionality that can be used and shared across multiple Controllers. - A custom upload
Behavior
could be used to extend a Model, for example to add images uploads. Another common example of aBehavior
would be to add extra validation functionality beyond that which CakePHP offers by default. - A
Helper
can be used to assist with View functionality. A good example here would be the CK Editor helper that makes it easy to display a CK Editor.
There is more to interviewing than tricky technical questions, so these are intended merely as a guide. Not every “A” candidate worth hiring will be able to answer them all, nor does answering them all guarantee an “A” candidate. At the end of the day, hiring remains an art, a science — and a lot of work.
Why Toptal
Submit an interview question
Submitted questions and answers are subject to review and editing, and may or may not be selected for posting, at the sole discretion of Toptal, LLC.
Looking for CakePHP Developers?
Looking for CakePHP Developers? Check out Toptal’s CakePHP developers.
Chady Kassouf
Chady is a full-stack web and iOS developer. He is fully fluent in Objective-C and Swift, and has a very long record of shipping products with the LAMP stack. He has solid experience with all things front-end and can work very closely with designers and UX teams.
Show MoreJason Funk
Jason is an experienced web developer with a broad range of both professional and personal technical achievements. He is the founder of Tough Space Consulting, a cloud-based business software consulting company that has helped a number of clients become more efficient and save money by improving their internal business processes. Jason is a strong team player, yet at the same time enjoys taking on personal challenges.
Show MoreAndu Fratu
Since 2007, Andu has been making a living as a programmer as both a freelancer and as part of various teams for companies big and small. One constant throughout is that he always strives for excellence and to outdo himself on his next project. He also has experience with both web and mobile technologies and is always up for a challenge. Andu is very accustomed to working in diverse environments with people from all over the world.
Show MoreToptal Connects the Top 3% of Freelance Talent All Over The World.
Join the Toptal community.