Calcular Frete dos Correios usando PHP 8.1
<?php
//namespace ......;
class FreightCalculate
{
public function __construct(
private string $code, //41106 - PAC , 40010 - SEDEX
private string $originZipCode,
private string $destinationZipCode,
private int $weight,
private int $length,
private int $height,
private int $width, //Min 10
private array $response = [],
) {
$url = 'http://ws.correios.com.br/calculador/CalcPrecoPrazo.aspx';
if ($length < 16) {
$this->length = 16;
}
$params = [
'nCdEmpresa' => '',
'sDsSenha' => '',
'sCepOrigem' => $this->originZipCode,
'sCepDestino' => $this->destinationZipCode,
'nVlPeso' => $this->weight, //kg
'nCdFormato' => '1', //1 para caixa / pacote e 2 para rolo/prisma.
'nVlComprimento' => $this->length,
'nVlAltura' => $this->height,
'nVlLargura' => $this->width,
'nVlDiametro' => '0',
'sCdMaoPropria' => 'n',
'nVlValorDeclarado' => '0',
'sCdAvisoRecebimento' => 'n',
'StrRetorno' => 'xml',
'nCdServico' => $this->code,
];
$params = http_build_query($params);
$curl = curl_init($url . '?' . $params);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($curl);
$data = simplexml_load_string($data);
foreach ($data->cServico as $service) {
if ($service->Erro == 0) {
$this->response['code'] = $service->Codigo ;
$this->response['value'] = $service->Valor;
$this->response['deadline'] = $service->PrazoEntrega ;
}
}
}
public function getValue(): float
{
return float $this->response['value'];
}
public function getDeadline(): int
{
return (int) $this->response['deadline'];
}
public function getCode(): int
{
return (int) $this->response['deadline'];
}
}
Esta é a classe que você pode imnportar no seu projeto.
코모 사용자?
Para usar basta instanciar a classe chamar os métodos de acordo com a sua necessidade.
$frete = new FreightCalculate('41106','59945000', '59158400', 1, 5, 5, 10);
...
$frete->getValue();
...
$frete->getDeadline();
Reference
이 문제에 관하여(Calcular Frete dos Correios usando PHP 8.1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/jilcimar/calcular-frete-dos-correios-usando-php-81-39f
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
$frete = new FreightCalculate('41106','59945000', '59158400', 1, 5, 5, 10);
...
$frete->getValue();
...
$frete->getDeadline();
Reference
이 문제에 관하여(Calcular Frete dos Correios usando PHP 8.1), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jilcimar/calcular-frete-dos-correios-usando-php-81-39f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)