0

你能告诉我这东西是怎么叫的,或者你可以告诉我怎么做。我有一个 mysql 数据库,其中包含一些行,例如姓名、姓氏。我需要知道如何将这些值传递给这样的文档:

<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>
4

2 回答 2

1

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

于 2013-10-13T09:29:36.567 回答
-1

可能最简单的方法是使用PHP 的SimpleXML模块

于 2013-10-13T09:29:55.043 回答