使用空标记将XML导入PHP

时间:2013-07-16 19:56:50

标签: php xml-parsing domdocument missing-data

我有一个脚本从我无法编辑的源中导入XML文件(第三方公司向我提供XML文件,数据每小时更改一次 - 他们说他们无法更改XML文件)。 / p>

以下是来源的示例:

<guns>
<gun id="0021">
<type>Air Pistol</type>
<mechanism>Single Stroke Pneumatic</mechanism>
<model>HW75</model>
<origin>German</origin>
<imageCount>2</imageCount>
<images>
  <image>
    <number>1</number> <fullPath>http://images.mydomain.com/Images/13/1306/13062/001/0021-1.jpg</fullPath>
  </image>
  <image>
    <number>2</number> <fullPath>http://images.mydomain.com/Images/13/1306/13062/001/0021-2.jpg</fullPath>
  </image>
</images>
</gun>

<gun id="0022">
<type>Air Pistol</type>
<mechanism>Single Stroke Pneumatic</mechanism>
<model>HW75</model>
<origin>German</origin>
</gun>
</guns>

我可以将字段导入PHP,然后成功导入Mysql。

但是,当它意识到'fullpath'字段不存在时,它会停止读取XML。

我要导入100条记录,并且在第21条记录之后停止,因为第22条记录没有任何图像。

这是我的php代码:

 $xmlDoc = new DOMDocument();
 $xmlDoc->load("xmlGuns.xml");
 $mysql_hostname = "localhost";
 $mysql_user = "************";
 $mysql_password = "********";
 $mysql_database = "*********";
 $bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password)
 or die("Oops some thing went wrong");
 mysql_select_db($mysql_database, $bd)
 or die("Oops some thing went wrong");

 mysql_query("TRUNCATE TABLE GunTable")
 or die("Oops some thing went wrong");
 mysql_query("ALTER TABLE GunTable AUTO_INCREMENT = 1")
 or die("Oops some thing went wrong");




  $x=$xmlDoc->getElementsByTagName('gun');
  for ($i=0; $i<=15000; $i++)
    {
    $type=$x->item($i)->getElementsByTagName('type')
    ->item(0)->childNodes->item(0)->nodeValue;
    $mechanism=$x->item($i)->getElementsByTagName('mechanism')
    ->item(0)->childNodes->item(0)->nodeValue;
    $model=$x->item($i)->getElementsByTagName('model')
    ->item(0)->childNodes->item(0)->nodeValue;
    $origin=$x->item($i)->getElementsByTagName('origin')
    ->item(0)->childNodes->item(0)->nodeValue;
    $fullPath=$x->item($i)->getElementsByTagName('fullPath')
    ->item(0)->childNodes->item(0)->nodeValue;

    $insert = "INSERT INTO GunTable (type, mechanism,  model, origin, fullpath) VALUES ('$type', '$mechanism','$model','$origin','$fullpath')";
    $add_member = mysql_query($insert);
    }

当它到达没有图像的记录时,它在处理第21号记录后给出了以下错误......

**注意:尝试在第31行的/mydomain.com/import.php中获取非对象的属性

致命错误:在第31行的/mydomain.com/import.php中调用非对象上的成员函数项目()

第31行开始:$ fullPath = $ x-&gt; item($ i) - &gt; getElementsByTagName('fullPath')

任何人都可以帮忙!我对PHP很好,但这个DOMDocument对我来说是新的。


解决方案:

Phew ......我设法解决了这个问题。

   if(isset($x->item($i)->getElementsByTagName('fullPath')->item(0)->childNodes)) {

   $fullPath=$x->item($i)->getElementsByTagName('fullPath')
   ->item(0)->childNodes->item(0)->nodeValue;

   } else { $fullPath = "No Image"; }

现在我遇到的问题是图像的URL未插入MySQL数据库...... EEK!

0 个答案:

没有答案