用php制作html-xml树

时间:2013-10-13 09:27:59

标签: php xml

你能告诉我这件事是怎么称呼的,或者你可以告诉我如何制作这件事。我有一个包含一些行的mysql数据库,例如name,surname。我需要知道如何将这些值传递给这样的文档:

<Product>
  <CategoryID>1</CategoryID>
  <Discontinued>false</Discontinued>
  <ProductID>1</ProductID>
  <ProductName>Chai</ProductName>
  <QuantityPerUnit>10 boxes x 20 bags</QuantityPerUnit>
  <ReorderLevel>10</ReorderLevel>
  <SupplierID>1</SupplierID>
  <UnitPrice>18.00</UnitPrice>
  <UnitsInStock>39</UnitsInStock>
  <UnitsOnOrder>0</UnitsOnOrder>
</Product>

2 个答案:

答案 0 :(得分:1)

您可以在PHP中使用SimpleXML轻松创建XML文件:http://php.net/simplexml

答案 1 :(得分:-1)

可能最简单的方法是使用PHP's SimpleXML module