gpt4 book ai didi

php - 使用php插入多个数据并更新数据库?

转载 作者:行者123 更新时间:2023-11-29 09:01:27 25 4
gpt4 key购买 nike

我使用 google api 获取距当前位置最近 50 公里的位置名称,因此工作正常。

所以我需要将所有这些位置插入我的数据库中。如果数据库中已有某个位置,我需要更新这些位置。

例如,我在 google api 中获取了 10 个位置,因此我的数据库中已存在 5 个位置。我需要更新 5 个位置,并插入剩余 5 个位置。

这是我的代码:

<?php
require 'dbconnect.php';
$LocaName=$_REQUEST['locname'];
$address=$_REQUEST['address'];
$latt=$_REQUEST['Latt'];
$long=$_REQUEST['Long'];

if($latt && $long)
{
$LocaNamearray = explode("|||", $LocaName);
$addressarray = explode("|||", $address);
$lattarray=explode("|||",$latt);
$longarray=explode("|||",$long);

for($i=0;$i<count($lattarray);$i++)
{
$query1="select * from tbl_MapDetails where Latitude='".$lattarray[$i]."'and Longitude='".$longarray[$i]."'";
$result1=mysql_query($query1);
$now=mysql_num_rows($result1);
}

if($now >=1)
{
for($k=0;$k<count($lattarray);$k++)
{
$query="update tbl_MapDetails set LocationName='".$LocaNamearray[$k]."', Address='".$addressarray[$k]."',Latitude='".$lattarray[$k]."', Longitude='".$longarray[$k]."' where Latitude='".$lattarray[$k]."'and Longitude='".$longarray[$k]."'";
}
$nav="update";
}
else
{

$query ="INSERT INTO tbl_MapDetails(LocationName,Address,Latitude,Longitude) VALUES";
$strDelimiter = "";

for($j=0;$j<count($LocaNamearray);$j++)
{
$name =$LocaNamearray[$j];
$address =$addressarray[$j];
$lat = $lattarray[$j];
$long = $longarray[$j];
$query .= $strDelimiter."('$name', '$address','$lat','$long')";
$strDelimiter = ',';
}
$nav="Add";
}

$result= mysql_query($query);

if($result)
{
echo mysql_error();
$message=array("message"=>"sucessfully".$nav);
}
else
{
echo mysql_error();
$message=array("message"=>"fail".$nav);
}
}
else
{
$message=array("message"=>"require latt and long");
}

echo json_encode($message);

?>

这里插入和更新工作正常,但我需要检查数据库中的每个位置。数据库中没有位置。它需要插入其他位置进行更新。如何检查这两个条件匹配的位置是否已更新以及不匹配的位置是否已插入请指导我。

最佳答案

你的代码逻辑有问题。您正在做的是循环遍历提供的数据,并针对每组数据检查是否存在具有该纬度/经度的位置并将其存储在 $now 变量中。完成该循环后,您将检查 $now 并再次循环提供的数据,并插入或更新每组数据。因此,如果最后一组数据存在,您的脚本将尝试更新每组数据。如果没有,您的脚本将尝试插入每组数据。您的代码应该是这样的(代码和伪代码的混合):

for($i=0;$i<count($lattarray);$i++)
{
$query1="select * from tbl_MapDetails where Latitude='".$lattarray[$i]."'and Longitude='".$longarray[$i]."'";
$result1=mysql_query($query1);
$now=mysql_num_rows($result1);


if($now >=1)
{
// update table with location details
}
else
{
// insert location details into table
}
}

如果这成为性能问题,您可以考虑首先检索所有 SELECT 数据,但如果您一次只处理 10 行,则应该没问题。

注意:根据您的 $_REQUEST 数据的来源,您可能需要进行一些验证,即检查您是否具有匹配的纬度/经度/名称/地址详细信息集。

关于php - 使用php插入多个数据并更新数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8473546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com