Thursday 5 February 2015

Zend interview questions and answers - Zend FAQs (Part3)

11. Zend auth
It is used to authenticate user, for example like admin, general etc.

12. Zend Acl
Based on the zend authentication it allows the user to access certain actions.

13. How do u set Module name, Controller name, and Action name in Zend framework?
a) $request->setModuleName(‘front’);
b) $request->setControllerName(‘address’);
c) $request->setActionName(‘addresslist’);

14. Configuration in Zend Framework, application.ini file?
Configuration can be done in application.ini file in Zend framework. This file in the path application/configs/application.ini.

15. Checking whether form posted or not in Zend framework?
$request = $this->getRequest();
$_GET = $request->getParams();
$_POST = $request->getPost();
More Questions & Answers :-
Part1  Part2  Part3  Part4  Part5

No comments:

Post a Comment