如何使用PHP在xml文件中将值发送到exists标记

时间:2017-02-22 09:53:14

标签: php xml api

<input  name="CONTACT_PHONE" placeholder="contact phone" class="form-control"  type="text">

通过POST获取代码

$contactphone = $_POST['CONTACT_PHONE'];

加载xml文件

$xml = simplexml_load_file("JOBS.xml");

获取存在标记

$tagcontactphone = xml -> getElementsByTagName("CONTACT_PHONE")

如何将$contactphone放入$tagcontactphone并保存xml文件?

1 个答案:

答案 0 :(得分:0)

你可以把它与等号

放在一起
$xml->getElementsByTagName("CONTACT_PHONE") = $contactphone;

您可以保存更新的XML或发送

file_put_contents('newfile.xml', $xml->asXML());
echo $xml->asXML();

查看文档:{​​{3}}