Login   Register  
PHP Classes
elePHPant
Icontem

File: Exemplo.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Sandro Alves Peres  >  PHP Rastreamento de Objetos dos Correios  >  Exemplo.php  >  Download  
File: Exemplo.php
Role: Example script
Content type: text/plain
Description: Exemplo
Class: PHP Rastreamento de Objetos dos Correios
Track packages posted to Correios in Brazil
Author: By
Last change:
Date: 2013-12-16 02:13
Size: 696 bytes
 

Contents

Class file image Download
<?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->setOrdemRastreamentoObjeto::ORDEM_ASC );
    
$objeto->carregar();

    foreach( 
$objeto as $tramite )
    {
        echo 
'<pre>'print_r($tramitetrue), '</pre>'PHP_EOL;
    }

    echo 
'<br /><br />';
    echo 
$objeto->isEntregue() ? 'OBJETO ENTREGUE!' 'OBJETO NÃO ENTREGUE!';
}
catch( 
Exception $e )
{
    echo 
$e->getMessage();
}
?>