CakePHP perguntas e respostas de entrevista
Pergunta 16. What is the purpose of the CakePHP 'Inflector' class?
The 'Inflector' class is used for pluralizing and singularizing English words, including class names and table names in CakePHP.
Example:
// Inflector::pluralize('Article'); // Returns 'Articles'
Pergunta 17. How to handle AJAX requests in CakePHP?
You can handle AJAX requests in CakePHP by using the 'RequestHandler' component and checking for AJAX requests in the controller.
Example:
// if ($this->request->is('ajax')) {
// Code for AJAX request
}
Pergunta 18. Explain the purpose of the CakePHP 'beforeRender' callback.
The 'beforeRender' callback is called before the view file is rendered. It's commonly used for modifying data before it's passed to the view.
Example:
// public function beforeRender() {
// Code here
}
Pergunta 19. How to perform database transactions in CakePHP?
You can use the 'transactional' method in CakePHP to perform database transactions.
Example:
// $this->Articles->getConnection()->transactional(function () {
// Code here
});
Pergunta 20. Explain the purpose of the CakePHP 'beforeDelete' callback.
The 'beforeDelete' callback is called before a record is deleted from the database. It's commonly used for additional cleanup or checks.
Example:
// public function beforeDelete($cascade = true) {
// Code here
}
Mais uteis segundo os usuarios: