如何向XML添加属性选项

时间:2014-02-27 09:34:04

标签: php xml simplexml

我有添加属性选项的问题。

我想编辑Filezilla服务器xml来添加新用户。我发现了一些脚本。这是此脚本中的一些代码。

$xml = simplexml_load_file($xmlfile);
$user = $xml->Users->addChild('User');
$user->addAttribute('Name', $user_name); 
add_option($user,'Pass',md5($password));

完整的脚本,您可以找到here

我的add_option功能有问题。 ("Fatal error: Call to undefined function add_option()")

0 个答案:

没有答案