我正在尝试编写一些代码,以获取CSV文件并提取相关的邮政编码列,然后在具有经度和纬度字段的MySql数据库中查找该邮政编码,然后将其保存到XML文件中,以便可以在其他数据库中使用程序
我认为这段代码都能正常工作,但是由于某种原因,它只输出查询的最后一个字段:
//Open the file.
$fileHandle = fopen("test.csv", "r");
$postcode = array();
while (($row = fgetcsv($fileHandle, 0, ",")) !== FALSE) {
array_push($postcode, $row[40]);
}
$postcodefil = (array_unique($postcode));
$postcodefil = str_replace(' ', '', $postcodefil);
$postcodefil = preg_replace('/\s+/', '', $postcodefil);
//print_r($postcodefil);
foreach ($postcodefil as $value) {
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT postcode, latitude, longitude FROM postcode WHERE postcode='$value' ";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// output data of each row
while($row = $result->fetch_assoc()) {
$myfile = fopen("test.xml", "w") or die("Unable to open file!");
$lat = $row["latitude"];
$lng = $row["longitude"];
fwrite($myfile, $lat."testss".$lng."\n");
echo $lat;
echo $lng;
echo "<br />";
}}
} // end of foreach
$conn->close();
但是,当我运行它时,它会正确显示
50.822398-0.139938
51.444908-1.295341
50.841951-0.842508
51.308504-0.551835
etc.... etc...
但是Fwrite只输出最后一行
51.120916testss-0.599545
我对此完全感到困惑。如果这是我已经忽略的基本内容,请原谅我。
答案 0 :(得分:1)
问题是您在每个循环中打开文件,这会覆盖以前的数据...
$myfile = fopen("test.xml", "w") or die("Unable to open file!");
while($row = $result->fetch_assoc()) {
因此将打开位置移到循环外部。
第二个问题是您根本没有编写XML。您需要做类似...
$xml = simplexml_load_string("<coords />");
while($row = $result->fetch_assoc()) {
$newCoord = $xml->addChild("coord");
$newCoord->addChild("latitude", $row["latitude"]);
$newCoord->addChild("longitude", $row["longitude"]);
}
$xml->saveXML("test.xml");
这将生成一个简单的XML文件,您需要适当设置元素名称。
答案 1 :(得分:0)
第一件事是将连接置于foreach循环之外,将fopen置于while之外 环。
您按照文档的“ w”模式打开xml文件
仅开放写作;将文件指针放在 文件并将其截断为零长度。如果该文件不存在, 尝试创建它。
您需要附加模式'a'
仅开放写作;将文件指针放在文件末尾。 如果该文件不存在,请尝试创建它。在这种模式下, fseek()无效,总是附加写入。
这将为您工作。但是您仍然按邮政编码对数据库发出请求,我建议收集所有需要查询的邮政编码,并使用sql IN运算符向数据库发出一个数据库请求。