PHP输出xml数据

时间:2013-04-09 09:46:41

标签: php html xml xml-parsing

我制作了一个从数据库中获取数据的外观时间表。但就我而言,我将数据直接传递给文件数据* .xml

或者换句话说,我做了定期数据收集的安排。 但这导致我展示的数据不是动态的。因为它只能读取文件*。 xml吧。我想在php和xml数据中创建一个函数outpunya是这样的:

<?php
header("Content-type: text/xml");
$dbhost = "localhost";
$dbuser = "user";
$dbpass = "pass";
$dbname = "my_epg";
mysql_connect($dbhost,$dbuser,$dbpass);
mysql_select_db($dbname);

include "Encoding.php";

date_default_timezone_set("Asia/Jakarta");
$DataTanggal = strip_tags(date("l, jS, F Y"));

sql = "select distinct(channel_name) FROM epg";
$q   = mysql_query($sql) or die(mysql_error());
$xml = "<timetable start='00:00' end='24:00' title='".$DataTanggal."'>";

while($r = mysql_fetch_array($q)){
       $CN = htmlspecialchars(strip_tags($r['channel_name']));
           $xml .= "<location name='".$CN."'>"; 


        $sql2 = "select * FROM epg where channel_name='".$CN."'";
        $q2  = mysql_query($sql2) or die(mysql_error());

while($r2 = mysql_fetch_array($q2)){
    $Mulai      = htmlspecialchars(strip_tags(date('H:i', strtotime($r2['waktu_mulai']))));
    $Selesai    = htmlspecialchars(strip_tags(date('H:i', strtotime($r2['waktu_akhir']))));
    $Title      = htmlspecialchars(strip_tags($r2['judul']));
    $Desk       = htmlspecialchars(strip_tags($r2['sinopsis']));

      $Encoding1 = Encoding::fixUTF8($TitleValid);
      $Encoding2 = Encoding::fixUTF8($DeskValid);

    $xml .= "<event start='".$MulaiValid."' end='".$SelesaiValid."'>";
    $xml .= "<title>".$Encoding1."</title>";
    $xml .= "<description>".$Encoding2."</description>";
    $xml .= "</event>"; 
}

$xml .= "</location>";
}



$xml .= "</timetable>";
echo $xml;
?>

这个成功的进程php文件和输出的结果与访问的* .xml相同。现在问题是我使用timetable.class.php来处理这些数据。

public function createTimetable($url) {

    //Load xml file
    $xml = @simplexml_load_file($url, NULL, LIBXML_NOCDATA);

    if(!$xml) {
        echo 'Error: there is an error in your XML file: <a href="'.$url.'">'.$url.'</a>';
        return;
    }

    if (strpos($url, 'http://') === 0 || strpos($url, 'https://') === 0 || strpos($url, 'ftp://') === 0) {
        echo 'Error: the path to your xml file may not start with "http://"';
        return;
    }

    //Set the settings
    $this->setSettings($xml, $url);

    $this->writeHTML($xml);

    echo $this->mbencoding($this->output);
    return;

}

但是此功能只能用于从现有文件(* .xml)中读取数据。不是动态的PHP进程。

我的问题:如何在这个class.php上创建一个进程,并获取或发布数据以使其动态化,以便我可以访问我已经进行xml echo类型处理的链接地址?

1 个答案:

答案 0 :(得分:0)

在动态PHP文件的末尾,您可以使用以下文件将文件另存为生成的XML:

 $file = fopen("generated.xml","w");

 fwrite($file, $xml);

 fclose($file);

然后,在函数create timetable中加载保存的XML文件。