簡體   English   中英

使用 php 編輯我的 xml 文件

[英]Edit my xml file using php

我想更新撥號標簽並將+923455252632替換為+923333578357這里是代碼;

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Say voice="alice">Thanks for the call. Configure your number's voice U R L to change this message.</Say>
    <Pause length="1"/>
    <Say voice="alice">Let us know if we can help you in any way during your development. you are a good person </Say>
    <Dial>+923455252632</Dial>
</Response>

我找到了解決方案,在這里。

$myfile = fopen("message.xml", "w") or die("Unable to open file!");// opens file in write mode @ftruncate($myfile, 0);// trancate previous contant in the xml file named message $txt = '<?xml version="1.0" encoding="UTF-8"?> <Response> <Say voice="alice"> Your call is being transferred to one of our company employees</Say> <Pause length="1"/> <Say voice="alice"> Please wait.</Say> <Pause length="1"/> <Say voice="alice"> Please wait.</Say> <Say voice="alice">Let us know if we can help you. you are a good person </Say> <Dial>'.$employee.'</Dial> </Response>'; fwrite($myfile, $txt);// Write contant in the file fclose($myfile);// Close file

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM