2

MySQLデータベースからXMLを生成するPHPファイルに問題があります。コードは以下のとおりです

<?php
require("decibelone_dbinfo.php");

function parseToXML($htmlStr)
{
    $xmlStr=str_replace('<','&lt;',$htmlStr);
    $xmlStr=str_replace('>','&gt;',$xmlStr);
    $xmlStr=str_replace('"','&quot;',$xmlStr);
    $xmlStr=str_replace("'",'&#39;',$xmlStr);
    $xmlStr=str_replace("&",'&amp;',$xmlStr);
    return $xmlStr;
}

// Opens a connection to a MySQL server
$connection=mysql_connect (localhost, $username, $password);
if (!$connection) {
    die('Not connected : ' . mysql_error());
}

// Set the active MySQL database
$db_selected = mysql_select_db($database, $connection);
if (!$db_selected) {
    die ('Can\'t use db : ' . mysql_error());
}

// Select all the rows in the markers table
$query = "SELECT * FROM location WHERE 1";
$result = mysql_query($query);
if (!$result) {
    die('Invalid query: ' . mysql_error());
}

header("Content-type: text/xml");

// Start XML file, echo parent node
echo '<markers>';

// Iterate through the rows, printing XML nodes for each
while ($row = @mysql_fetch_assoc($result)){
    // ADD TO XML DOCUMENT NODE
    echo '<marker>';
    echo '<name>' . parseToXML($row['name']) . '</name>';
    echo '<address>' . parseToXML($row['address']) . '</address>';
    echo '<latitude>' . $row['latitude'] . '</latitude>';
    echo '<longitude>' . $row['longitude'] . '</longitude>';
    echo '<description>' . $row['description'] . '</description>';
    echo '<time>' . $row['time'] . '</time>';
    echo '</marker>';
}

// End XML file
echo '</markers>';

?>

問題が何であるかはわかりませんが、すべての文字エンコード(mysqlおよびhtaccessの下)をUTF8に変更しました。最近、ホストによるサーバーのメンテナンス後に問題が発生し、その前後でファイルを変更しなかったため、コード自体に問題があるのではないかと思います。誰かが私を正しい方向に向けることができますか?前もって感謝します!

4

1 に答える 1

1

DomDocument クラスを使用できます。あなたが使っているのは古い方法だと思います。以下のリンクをご覧ください。

http://php.net/manual/en/class.domdocument.php

于 2012-04-18T10:03:15.740 に答える