Created
November 9, 2014 14:23
-
-
Save adelarcubs/349df689a3c57146ca7f to your computer and use it in GitHub Desktop.
CepSample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Zend Framework (http://framework.zend.com/) | |
* | |
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository | |
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) | |
* @license http://framework.zend.com/license/new-bsd New BSD License | |
*/ | |
namespace Application\Controller; | |
use Zend\Mvc\Controller\AbstractRestfulController; | |
class CepController extends AbstractRestfulController { | |
public function get($id) { | |
$content = array( | |
"CEP" => $id, | |
"Lagradouro" => null, | |
"Bairro" => null, | |
"Cidade" => null, | |
"Estado" => null | |
); | |
/** | |
* You may centralized this process through controller's event callback handler | |
*/ | |
$format = $this->getEvent()->getRouteMatch()->getParam('format'); | |
$response = $this->getResponse(); | |
if ($format == 'json') { | |
$contentType = 'application/json'; | |
$adapter = '\Zend\Serializer\Adapter\Json'; | |
} | |
// continue for xml, amf etc. | |
$response->setStatusCode(200); | |
$response->getHeaders()->addHeaderLine('Content-Type', $contentType); | |
$adapter = new $adapter; | |
$response->setContent($adapter->serialize($content)); | |
return $response; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "zendframework/skeleton-application", | |
"description": "Skeleton Application for ZF2", | |
"license": "BSD-3-Clause", | |
"keywords": [ | |
"framework", | |
"zf2" | |
], | |
"homepage": "http://framework.zend.com/", | |
"require": { | |
"php": ">=5.3.3", | |
"zendframework/zendframework": "2.2.*" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment