PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Deni Santos   CEP Web Service   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: example
Class: CEP Web Service
Determine the address of a Brazilian zip code
Author: By
Last change:
Date: 15 years ago
Size: 189 bytes
 

Contents

Class file image Download
<?php

   
include 'CepWebService.php';
   
   
$cep = new CepWebService();
   
$result = $cep->setCep('80730-400')
                  ->
find();
   
    echo
"<pre>";
   
print_r($result);
    echo
"</pre>";
   
?>