我有这个XML对于Flash编码器的工作原理:
<?xml version="1.0" encoding="UTF-8"?>
<flashmedialiveencoder_profile>
<preset>
<name></name>
<description></description>
</preset>
<capture>
<video>
<device></device>
<crossbar_input>1</crossbar_input>
<frame_rate>25.00</frame_rate>
<size>
<width></width>
<height></height>
</size>
</video>
<audio>
<device></device>
<crossbar_input>2</crossbar_input>
<sample_rate></sample_rate>
<channels>1</channels>
<input_volume>60</input_volume>
</audio>
</capture>
<encode>
<video>
<format>H.264</format>
<datarate></datarate>
<outputsize></outputsize>
<advanced>
<profile></profile>
<level></level>
<keyframe_frequency>5 Seconds</keyframe_frequency>
</advanced>
<autoadjust>
<enable>false</enable>
<maxbuffersize>1</maxbuffersize>
<dropframes>
<enable>false</enable>
</dropframes>
<degradequality>
<enable>false</enable>
<minvideobitrate></minvideobitrate>
<preservepfq>false</preservepfq>
</degradequality>
</autoadjust>
</video>
<audio>
<format>MP3</format>
<datarate></datarate>
</audio>
</encode>
<restartinterval>
<days></days>
<hours></hours>
<minutes></minutes>
</restartinterval>
<reconnectinterval>
<attempts></attempts>
<interval></interval>
</reconnectinterval>
<output>
<rtmp>
<url></url>
<backup_url></backup_url>
<stream></stream>
</rtmp>
</output>
<metadata>
<entry>
<key>author</key>
<value></value>
</entry>
<entry>
<key>copyright</key>
<value></value>
</entry>
<entry>
<key>description</key>
<value></value>
</entry>
<entry>
<key>keywords</key>
<value></value>
</entry>
<entry>
<key>rating</key>
<value></value>
</entry>
<entry>
<key>title</key>
<value></value>
</entry>
</metadata>
<preview>
<video>
<input>
<zoom>50%</zoom>
</input>
<output>
<zoom>50%</zoom>
</output>
</video>
<audio></audio>
</preview>
<log>
<level>100</level>
<directory></directory>
</log>
</flashmedialiveencoder_profile>
我需要更新一些根据用户需要XML类型的数据。 所以我想这样做:
$data = array (
'preset' => array (
'name' => 'Low Bandwidth (150 Kbps) - H.264',
),
'capture' => array (
'audio' => array (
'sample_rate' => 44100
)
),
'encode' => array (
'video' => array (
'datarate' => '300;',
'outputsize' => '480x360;',
'advanced' => array (
'profile' => 'Main',
'level' => 2.1,
)
),
'audio' => array (
'datarate' => 48
)
),
);
我知道这棵树的作品,因为我可以做手工,但问题是,我不想那样做,所以如果将来我需要改变其他想在XML中,我只添加它到阵列配置。
我该怎么做? 我可以写一个递归函数来做到这一点,但我真的不希望做这件事的方式。 是否有任何其他方式做到这一点? 我不知道......可能是这样的:
$xml->updateFromArray($data);
正如我再说一遍,我可以编写功能和扩展的SimpleXMLElement,但如果有任何其他的本地PHP的方法做它,它会更好。