Jump to content
Fórum Script Brasil
  • 0

xml em objeto


felipepai

Question

OLÁ GALERA TENHO estou fazendo função simplexml_load_file para captar alguns dados

porém fica um link com variavel, que fica mudando um número

gostaria mas se o numero da variavél, não correnpoder a nada, da erro

conforme esta em baixo variavel $codigo_de_rastreio

se for numero valido ela funciona, se numero não existir não funciona

porém da erro

já usei diversas alternativa até com file_exit() ,alguém tem uma solução ??????

     $reg = simplexml_load_file("http://developers.agenciaideias.com.br/correios/rastreamento/xml/$codigo_de_rastreio");
       $link = 'http://developers.agenciaideias.com.br/correios/rastreamento/xml/'.$codigo_de_rastreio;
      if($link === FALSE){
          echo ' NÃO É valido -----------------'."<br />";
      }else{
          echo' valido'."<br />";
      }
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Fica um exemplo. Vê se resolve:

<?php
$codigo = "SS123456789BR";	   
$reg = @simplexml_load_file("http://developers.agenciaideias.com.br/correios/rastreamento/xml/$codigo");

if (is_object($reg)) 
{
  foreach ($reg as $key => $value) 
  {
      foreach ($value as $k => $v)
      {
          echo $k . " => " . $v . "<br />";
      }
    echo "<br />";	
  }
}
else
{
	echo "Código inválido.";
}
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...