<?php
/*
* Copyright (c) 2013, Sandro Alves Peres
* All rights reserved.
*
* Date: 16/12/2013
* http://www.zend.com/en/yellow-pages#show-ClientCandidateID=ZEND022656
*/
include_once 'RastreamentoObjeto.php';
try
{
$objeto = new RastreamentoObjeto();
$objeto->setObjeto( 'AA987654321BR' );
$objeto->setOrdem( RastreamentoObjeto::ORDEM_ASC );
$objeto->carregar();
foreach( $objeto as $tramite )
{
echo '<pre>', print_r($tramite, true), '</pre>', PHP_EOL;
}
echo '<br /><br />';
echo $objeto->isEntregue() ? 'OBJETO ENTREGUE!' : 'OBJETO NÃO ENTREGUE!';
}
catch( Exception $e )
{
echo $e->getMessage();
}
?>
|