我有一个带有名称的表,location
它的行是latitude
,longitude
和radius
。由于是 php 新手,我对如何将这些输入作为 json 并将其发送回服务器感到困惑。
这是我正在使用的当前代码
function Location()
{
try
{
$conn = $this->GetDBConnection();
$statement = $conn->prepare('SELECT * FROM location LIMIT 1');
$statement->execute();
if(!($row = $statement->fetch(PDO::FETCH_OBJ)))
{
throw new Exception('Connection failed.');
}
$conn = null;
while($row = $statement->fetch(PDO::FETCH_OBJ))
{
if($row->type == 'longitude')
{
// WHAT TO DO HERE
}
if($row->type == 'latitude')
{
}
if($row->type == 'radius')
{
}
}
return //JSON STRING;
} catch(PDOException $e)
{
throw $e;
}
}