PHP code example of thallesdella / entregas
1. Go to this page and download the library: Download thallesdella/entregas library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
thallesdella / entregas example snippets
hallesDKoester\Entregas\Entregas;
$cep = Entregas::cep('22470-230')->getAddr();
print_r($cep);
$cep = Entregas::cep('22470-230');
$addr = $cep->getAddr();
if (empty($addr)){
echo $cep->getError();
}
hallesDKoester\Entregas\Entregas;
$frete = Entregas::frete(
['origem' => '22470-230', 'destino' => '24348-190'],
['pac'],
[
'peso' => '1000',
'formato' => Entregas::FRETE_FORMATO_CAIXA,
'comprimento' => '30',
'altura' => '15',
'largura' => '20'
])->getFrete();
print_r($frete);
$frete = Entregas::frete(
['origem' => '22470-230', 'destino' => '24348-190'],
['pac', 'sedex'],
[
'peso' => '1000',
'formato' => Entregas::FRETE_FORMATO_CAIXA,
'comprimento' => '30',
'altura' => '15',
'largura' => '20'
])->getFrete();
print_r($frete);
$frete = Entregas::frete(
['origem' => '22470-230', 'destino' => '24348-190'],
['pac', 'sedex'],
[
'peso' => '1000',
'formato' => Entregas::FRETE_FORMATO_CAIXA,
'comprimento' => '30',
'altura' => '15',
'largura' => '20'
]);
$data = $cep->getAddr();
if (empty($data)) {
echo $frete->getError();
}