0

情况如下。我必须将定义的 XML 发送到http:\\www.example.com:1234带有一些我必须先前定义的变量的 url。

XML 是这样的:

<Title1>
<Title2>Some Text</Title2>
<Title3>Variable 1</Title3>
<Title4>Some Text</Title4>
<Title5>
    <Title51>Variable 2</Title51>
</Title5>
</Title1>

但是,我想在 html/php 表单和 get 方法中定义这些变量(1、2),因此用户可以引入这两个变量,然后单击表单中的提交按钮以将 XML 发送到以前的 URL。

此外,XML 应该有"Content-Type","application/x-www-form-urlencoded"标题。

这可能吗?我尝试将这些变量直接传递给 XML,而我得到的最好方法是显示 XML 而不是解析 php 字符串。

另外,我尝试了一些脚本,例如 PHP 类中的 simplexml,但到目前为止还没有运气。

4

1 回答 1

0

1) 用新值修改现有 XML。试试这个

示例.xml

<Title1>
   <Title2>Some Text</Title2>
   <Title3>Variable 1</Title3>
   <Title4>Some Text</Title4>
   <Title5>
      <Title51>Variable 2</Title51>
   </Title5>
</Title1>

PHP:

$xml = simplexml_load_file("sample.xml");
$xml->Title3 = $_GET['t3'];              // Updating <Title3></Title3> from GET method
$xml->Title5[0]->Title51 = $_GET['t5'];  // Updating <Title51></Title51> from GET method
$xml->asXML('sample.xml');               // saving the xml file

2)创建新的 XML 文件(sample.xml):

PHP:

$xml = new SimpleXMLElement("<Title1></Title1>");
$xml->Title2='Some Text';
$xml->Title3 = $_GET['t3'];
$xml->Title4='Some Text';
$xml->Title5[0]->Title51 = $_GET['t5'];
$xml->asXML('sample.xml');               // saving the xml file

我已经向您展示了评论中提到的两种可能性。使用任何让你感到安慰的人:)

于 2012-07-30T13:24:44.853 回答