0

I've got a malformed xml file, basically it have ampersan(&) inside the tags and they are not escaped...

This is the code i'm using for loading the xml.

$archivo = "tarifa_mayorista.xml";
echo "Reading file<br>";
if (file_exists($archivo)) {
  $articulos = simplexml_load_file($archivo); 
  if($articulos){
    foreach ($articulos->Categoria as $rs) { 
        $categoria = (string) $rs->TxCategoria;
        $subCat = (string) $rs->SubCategoria[0]->TxSubCategoria;
        $cod = (string) $rs->SubCategoria[0]->SubCategoria2[0]->PartNumber;
        $stock = (string) $rs->SubCategoria[0]->SubCategoria2[0]->Stock;                
        $precio = (string) $rs->SubCategoria[0]->SubCategoria2[0]->Precio;
        $fabricante = (string) $rs->SubCategoria[0]->SubCategoria2[0]->Fabricante;  
        $ean = (string) $rs->SubCategoria[0]->SubCategoria2[0]->EAN;  
        $descripcion = (string) $rs->SubCategoria[0]->SubCategoria2[0]->Descripcion;
        $canon = (string) $rs->SubCategoria[0]->SubCategoria2[0]->Canon;
        $desc = mysql_real_escape_string($descripcion);     
        $sql2="insert into `activadosmil` 
               set  cod='".trim($cod)."', stock='".trim($stock)."', precio='".trim($precio)."', categoria='".$categoria."', 
               subcategoria='".$subCat."', descripcion='".$desc."', ean='".trim($ean)."', canon='".trim($precio)."', fabricante='".trim($fabricante)."'"; 
        mysql_query($sql2) or die(mysql_error()."<hr>".$sql2); 
    }       
  } else echo "<br>Invalid XML sintaxis";
} else echo "<br>Error opening ".$archivo;

/* SAMPLE XML CODE */

<Categoria>
    <TxCategoria>ALMACENAMIENTO</TxCategoria>
    <SubCategoria>
        <TxSubCategoria>CARCASAS DISCO DURO</TxSubCategoria>
            <SubCategoria2>
                <TxSubCategoria2>2,5"</TxSubCategoria2>
                <PartNumber>5VECTRIXALU3,5</PartNumber>
                <Fabricante>TACENS</Fabricante>
                <EAN>4710700954461</EAN>
                <Descripcion>MONITOR ASUS LED&PIP 27 VE278Q</Descripcion>
                <Precio>       12.37</Precio>
                <Stock>        0</Stock>
                <Canon>      0.00</Canon>
            </SubCategoria2>
    </SubCategoria>
</Categoria>

Is there any way to load the xml malformed file with simplexml? Or escape the characteres from tags?

Thank you guys in advance

4

1 回答 1

1

如果您对与号的问题与您的问题一样天真,那么这是一个天真的解决方案。

您可以首先将文件内容作为字符串获取:

$contents = file_get_contents($archivo);

然后,您可以运行 str_replace 来替换所有出现的&with&amp;

$contents = str_replace('&', '&amp;', $contents);

现在,将转义字符串加载到您的 simplexml 中:

$articulos = simplexml_load_string($contents);
于 2013-09-13T16:14:52.183 回答