Zend Framework is an open source, object oriented web application framework for PHP 5. Zend Framework is often called a 'component library', because it has many loosely coupled components that you can use more or less independently.
I have experienced Zend Framework 1 and I've build some apps with that framework. Now, I'm experimenting Zend Framework 2, but I'm …
php zend-framework2 zend-framework-mvcSo far, I have figured out how to return a typical JSON response in Zend Framework 2. First, I added the …
php json zend-framework2 zend-framework-mvcI know with ZF1 you would retrieve the module/controller name using custom View Helpers that would get the singleton …
php zend-framework zend-framework-mvc zend-framework2I have an Action method in Foo Controller which requires parameters: public function fooAction($one, $two) { $a = one; $b = $two; } …
php zend-framework2 zend-framework-mvc zend-framework-routingBy default the page is set like this in the Application module.config array: 'template_map' => array( 'error/404' =&…
php zend-framework2 http-status-code-404 zend-view zend-framework-mvcI used below code to render a page in the controller action. public function userinforeceiveAction() { $renderer = new PhpRenderer(); $map = new …
php zend-framework zend-framework2 zend-framework-mvcI am currently in the process of building an application with ZF2, everything is going well so far, but I …
zend-framework zend-framework2 zend-framework-mvcCould someone give few tips and/or examples how Controller Plugins and Action Helpers are different? Are there situations where …
zend-framework zend-framework-mvcI'm trying to evaluate if it's already the right time to start moving to ZF3 (or keep developing my application …
zend-framework-mvc zend-framework3 zf3