dongshengyin0147 2013-02-10 02:29
浏览 27
已采纳

如何PHP DomDocument创建属性?

I've been smacking my head against the wall for two days trying to figure out how to get PHP to encode the XML I want. I tried SimpleXML and found out there are serious limitations, so for now I am using DomDocument to fulfill my needs. MY problem is quite basic, what is the proper syntax?

I am retrieving code from a database, then rendering it to xml. The XML structure has to be in the same exact format as the one I am going to post. The issue is when it comes to attributes. The output has three attributes that need to be repeated twelve times with different values. My problem is trying to figure out how to render the attributes, what code is necessary.

Here is the XML:

    <inits>
<version>18.05.04_EP1</version>
<source>Live</source>
<lowid>265067</lowid>
<highid>265068</highid>
<ql>300</ql>
<name>Ofab Shark Mk 1</name>
<inits slider="DEF&gt;===========][&lt;AGG" percent="100" init="430" />
<inits slider="DEF&gt;==========][=&lt;AGG" percent="90" init="530" />
<inits slider="DEF&gt;=========][==&lt;AGG" percent="81" init="630" />
<inits slider="DEF&gt;========][===&lt;AGG" percent="72" init="730" />
<inits slider="DEF&gt;=======][====&lt;AGG" percent="63" init="830" />
<inits slider="DEF&gt;======][=====&lt;AGG" percent="54" init="930" />
<inits slider="DEF&gt;=====][======&lt;AGG" percent="45" init="1030" />
<inits slider="DEF&gt;====][=======&lt;AGG" percent="36" init="1130" />
<inits slider="DEF&gt;===][========&lt;AGG" percent="27" init="1290" />
<inits slider="DEF&gt;==][=========&lt;AGG" percent="18" init="1590" />
<inits slider="DEF&gt;=][==========&lt;AGG" percent="9" init="1890" />
<inits slider="DEF&gt;][===========&lt;AGG" percent="0" init="2190" />

</inits>

Notice that Inits contains attributes, percent, and init. Which is going to display 12 times in this example, which is derived from data and php calculations. Here is the code that I am using so far. Note: I am skipping the data and calculation functions and filling in the data manually.

    $root = $doc->createElement('inits');
$root = $doc->appendChild($root);

$version = $doc->createElement('version');
$version = $root->appendChild($version);
$versiontext = $doc->createTextNode($patchNum);
$versiontext = $version->appendChild($versiontext);

$source = $doc->createElement('source');
$source = $root->appendChild($source);
$sourcetext = $doc->createTextNode('live');
$sourcetext = $source->appendChild($sourcetext);

$xlowid = $doc->createElement('lowid');
$xlowid = $root->appendChild($xlowid);
$xlowidtext = $doc->createTextNode($lowid);
$xlowidtext = $xlowid->appendChild($xlowidtext);

$xhighid = $doc->createElement('highid');
$xhighid = $root->appendChild($xhighid);
$xhighidtext = $doc->createTextNode($highid);
$xhighidtext = $xhighid->appendChild($xhighidtext);

$xql = $doc->createElement('ql');
$xql = $root->appendChild($xql);
$xqltext = $doc->createTextNode($ql);
$xqltext = $xql->appendChild($xqltext);

Where do I go from here to get the 3 attributes to work, exactly like the XML example above. Thank You.

  • 写回答

1条回答 默认 最新

  • 普通网友 2013-02-10 02:40
    关注

    To set an attribute, use $some_node->setAttribute("name","value"). Repeat as needed for all attributes.

    Also, note that you can chain function calls:

    $root = $doc->appendChild($doc->createElement('inits'));
    $root->appendChild($doc->createElement('version',$patchNum));
    $root->appendChild($doc->createElement('source',$sourcetext));
    $root->appendChild($doc->createElement('lowid',$lowid));
    $root->appendChild($doc->createElement('highid',$highid));
    $root->appendChild($doc->createElement('ql',$ql));
    for($i=11;$i>=0;$i--) {
        $node = $root->appendChild($doc->createElement('inits'));
        $node->setAttribute("slider","DEF>".str_repeat("=",$i)."][".str_repeat("=",11-$i)."<AGG");
        $node->setAttribute("percent",floor($i/11*100));
        $node->setAttribute("init",$i>3 ? 430+(11-$i)*100 : 1290+(3-$i)*300);
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里