1

こんにちは、誰かがこのinstが私のXMLファイルに保存する理由を教えてもらえますか? エラーは返されませんが、ファイルにも書き込まれませんか? ばかげているかもしれませんので、あらかじめお詫び申し上げます

<?php

$pastor    = $_POST["Speaker"];
$title     = $_POST["Title"];
$link      = $_POST["podcasturl"];
$download  = $_POST["Download"];
$podcastid = $_POST["Podcastid"];
$pubdate   = $_POST ["Date"];

$filename = 'podcast.xml';

$xml = simplexml_load_file($filename);
$xml->addChild('title');
$xml->addChild('pastor', $pastor);
$xml->addChild('title', $title);

function saveXMLFormatted($xml, $filename) {
    $savexml                     = new DOMDocument('1.0');
    $savexml->preserveWhiteSpace = FALSE;
    $savexml->loadXML($xml->asXML());
    $savexml->formatOutput = TRUE;
    file_put_contents($filename, $savexml->saveXML());
}
4

0 に答える 0