本文整理汇总了PHP中getAddress函数的典型用法代码示例。如果您正苦于以下问题:PHP getAddress函数的具体用法?PHP getAddress怎么用?PHP getAddress使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getAddress函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: index
/**
* 主页
* @return null null
*/
public function index()
{
echo 'Moudle: Home' . '<br />';
echo 'Controller: Index' . '<br />';
echo 'Action: index' . '<br />';
$links = getAddress();
$this->assign('address', $links);
$this->display();
}
开发者ID:samksan,项目名称:qlc,代码行数:13,代码来源:IndexController.class.php
示例2: saveIntoPublisherInfo
public function saveIntoPublisherInfo($objPublisherInfo)
{
$query = "INSERT INTO publisher_info(pub_id, organisation_name, address, city, pincode) values(:PUB_ID, :ORGANISATION_NAME, :ADDRESS, :CITY, :PINCODE)";
try {
$dbconn = $this->getConnection();
$stmt = $dbconn->prepare($query);
$stmt->bindValue(':PUB_ID', $objPublisherInfo->getPubId());
$stmt->bindValue(':ORGANISATION_NAME', $objPublisherInfo->getOrganisationName());
$stmt->bindValue(':ADDRESS', $objPublisherInfo > getAddress());
$stmt->bindValue(':CITY', $objPublisherInfo->getCity());
$stmt->bindValue(':PINCODE', $objPublisherInfo->getPincode());
$stmt->execute();
} catch (Exception $ex) {
$this->throwPDOException($e);
}
}
开发者ID:siddhant389,项目名称:Refermee-releases,代码行数:16,代码来源:PublisherInfoDaoPDO.php
示例3: createVCard
function createVCard($array)
{
$return = 'BEGIN:VCARD' . PHP_EOL;
$return .= 'VERSION:2.1' . PHP_EOL;
$return .= getName($array) . PHP_EOL;
$return .= getFormatedName($array) . PHP_EOL;
$return .= getPhoto($array);
$return .= getTelephonePrivate($array);
$return .= getMobilePrivate($array);
//$return .= 'TEL;WORK;VOICE:(0221) 9999123' . PHP_EOL;
//$return .= 'TEL;HOME;VOICE:(0221) 1234567' . PHP_EOL;
$return .= getAddress($array);
$return .= getEmail($array);
$return .= date('Y-m-d H:i:s') . PHP_EOL;
$return .= 'END:VCARD' . PHP_EOL;
return $return;
}
开发者ID:michaelsoftware1997,项目名称:vision-server,代码行数:17,代码来源:vcard.php
示例4: sendBtc
function sendBtc($id, $amount)
{
#Send btc from id to address
$bitcoin = new jsonRPCClient("http://{$bitcoin_user}:{$bitcoin_pass}@127.0.0.1:8332/");
if ($bitcoin->getbalance() < $amount) {
return -1;
}
if (!debit($id, $amount)) {
return -2;
}
$address = getAddress($id);
if ($address == -1) {
return -3;
}
$comment = getUsernameById($id);
$bitcoin->sendtoaddress($address, $amount, $comment);
return 0;
}
开发者ID:henrikssn,项目名称:OpenPool,代码行数:18,代码来源:payment.php
示例5: index
public function index()
{
echo 'Moudle: Home' . '<br />';
echo 'Controller: Chart' . '<br />';
echo 'Action: index' . '<br />';
$nums = I('numbers');
if (I('numbers') <= 0) {
$nums = 15;
}
// 链接地址
$links = getAddress();
$this->assign('address', $links);
// 开奖数据
$kjh = M('kjh');
$result = $kjh->limit($nums)->order('qh DESC')->select();
$result = array_reverse($result);
// 开奖号码经过处理返回表格形式的数组
$d = numbersFormat($result);
$this->assign('kjh', $d);
$this->display();
}
开发者ID:samksan,项目名称:qlc,代码行数:21,代码来源:ChartController.class.php
示例6: filter_input
$address_id = filter_input(INPUT_POST, 'address_id');
$fullname = filter_input(INPUT_POST, 'fullname');
$email = filter_input(INPUT_POST, 'email');
$address = filter_input(INPUT_POST, 'address');
$phone = filter_input(INPUT_POST, 'phone');
$website = filter_input(INPUT_POST, 'website');
$birthday = filter_input(INPUT_POST, 'birthday');
$image = filter_input(INPUT_POST, 'upfile');
$img = uploadProductImage();
// function to update database
updateNoImg($address_group_id, $address_id, $user_id, $fullname, $email, $address, $phone, $website, $img);
} else {
$address_id = filter_input(INPUT_GET, 'address_id');
}
//fill variables from database function
$results = getAddress($address_id, $user_id);
$address_group_id = $results['address_group_id'];
$fullname = $results['fullname'];
$email = $results['email'];
$address = $results['address'];
$phone = $results['phone'];
$website = $results['website'];
$birthday = $results['birthday'];
$image = $results['image'];
// /* statment selects from database */
// $stmt = $db->prepare("SELECT * FROM address WHERE address_id = :address_id AND user_id = :user_id");
//
// /* binds results into array */
// $binds = array(
// ":address_id" => $address_id,
// ":user_id" => $user_id
开发者ID:emacc,项目名称:PHPClassSummer2015,代码行数:31,代码来源:update.php
示例7: readEntryLog
//.........这里部分代码省略.........
}
break;
case 'invoice_comment':
if ($value == '') {
$return[] = _('Invoice') . ' - ' . _('Comment') . ' <i>' . _('not set') . '</i>';
} else {
$return[] = _('Invoice') . ' - ' . _('Comment') . ' ' . $middlestring . ' "' . $value . '"';
}
break;
case 'invoice_ref_your':
if ($value == '') {
$return[] = _('Invoice') . ' - ' . _('Your reference') . ' <i>' . _('not set') . '</i>';
} else {
$return[] = _('Invoice') . ' - ' . _('Your reference') . ' ' . $middlestring . ' "' . $value . '"';
}
break;
case 'invoice_electronic':
if ($value) {
$return[] = _('Invoice') . ' <i>' . _('is to be sendt by e-mail') . '</i> (' . _('E-delivery') . ')';
} else {
$return[] = _('Invoice') . ' <i>' . _('is to be sendt by regular mail') . '</i> (' . _('Not') . ' ' . strtolower(_('E-delivery')) . ')';
}
break;
case 'invoice_email':
if ($value == '') {
$return[] = _('Invoice') . ' - ' . _('E-mail') . ' <i>' . _('not set') . '</i>';
} else {
$return[] = _('Invoice') . ' - ' . _('E-mail') . ' ' . $middlestring . ' "' . $value . '"';
}
break;
case 'invoice_address_id':
if ($value == 0) {
$return[] = _('Invoice') . ' - ' . _('Address') . ' <i>' . _('not set') . '</i>';
} else {
$address = getAddress($value);
if (count($address)) {
$return[] = _('Invoice') . ' - ' . _('Address') . ' ' . $middlestring . ' <i>' . str_replace("\n", ', ', $address['address_full']) . '</i>';
} else {
$return[] = _('Invoice') . ' - ' . _('Address') . ' ' . $middlestring . ' "' . $value . '"';
}
}
break;
case 'invoice_content':
if (!is_array($value)) {
$return[] = _('Invoice') . ' - ' . _('Content') . ' has got syntax error in the log.';
} else {
foreach ($value as $linenr => $line) {
$return[] = _('Invoice') . ' - ' . _('Content') . ' - ' . _('line') . ' <i>' . $linenr . '</i> ' . $middlestring . ': ' . _('name') . ': <i>' . $line['name'] . '</i>, ' . 'pris/stk: <i>' . $line['belop_hver'] . '</i>, ' . _('amount') . ': <i>' . $line['antall'] . '</i>, ' . _('tax') . ': <i>' . $line['mva'] * 100 . '%</i>, ' . 'sum u/MVA: <i>' . $line['belop_sum_netto'] . '</i>';
}
}
break;
case 'program_id':
if ($value == 0) {
$return[] = _('Fixed program') . ' <i>' . _('not set') . '</i>';
} else {
$program = getProgram($value);
if (count($program)) {
$return[] = _('Fixed program') . ' ' . $middlestring . ' <i>' . $program['program_name'] . '</i>';
} else {
$return[] = _('ID of fixed program') . ' ' . $middlestring . ' "' . $value . '"';
}
}
break;
case 'entry_type_id':
if ($value == 0) {
$return[] = _('Entry type') . ' <i>' . _('not set') . '</i>';
} else {
$entry_type = getEntryType($value);
if (count($entry_type)) {
$return[] = _('Entry type') . ' ' . $middlestring . ' <i>' . $entry_type['entry_type_name'] . '</i>';
} else {
$return[] = _('ID of entry type') . ' ' . $middlestring . ' "' . $value . '"';
}
}
break;
case 'confirm_id':
$return[] = '<a href="entry_confirm_view.php?confirm_id=' . $value . '">' . _('Confirmation sent') . '</a>';
break;
case 'confirm_comment':
$return[] = _('Comment') . ': ' . $value;
break;
default:
if (substr($index, 0, 11) == 'email_faild') {
$return[] = _('Confirmation was <b>not sent</b> to') . ' <i>' . $value . '</i>';
break;
} elseif (substr($index, 0, 5) == 'email') {
$return[] = _('Confirmation was sent to') . ' <i>' . $value . '</i>';
break;
}
if (is_array($value)) {
$return[] = $index . ' = ' . print_r($value, true);
} else {
$return[] = $index . ' = ' . $value;
}
break;
}
}
}
return $return;
}
开发者ID:HNygard,项目名称:JM-booking,代码行数:101,代码来源:functions.inc.php
示例8: session_start
<?php
session_start();
if (!isset($_SESSION['user']) || $_SESSION['user']->u_status != 1) {
header("Location: index.php");
exit;
}
include 'functions.php';
$page = 'profile';
$address = getAddress($_SESSION['user']->u_zip);
$age = getAge($_SESSION['user']->u_birthday);
$membershipDuration = displayDate($_SESSION['user']->u_register_date, '2');
$userTimeline = getUserTimeline($_SESSION['user']->u_id);
if ($_SESSION['user']->u_gender == 'Male') {
$genderIcon = 'fa-male';
} else {
if ($_SESSION['user']->u_gender == 'Female') {
$genderIcon = 'fa-female';
} else {
$genderIcon = 'fa-genderless';
}
}
$dietStatus = dietStatus();
$isUpUpdateRequired = isUpUpdateRequired();
if ($dietStatus) {
$dietStats = getDietStats();
if ($dietStats->ds_progress == 'P') {
$icon_diet_progres_class = 'fa fa-smile-o fa-2x';
$progress_status = '';
} else {
if ($dietStats->ds_progress == 'N') {
开发者ID:bunver,项目名称:odiet,代码行数:31,代码来源:profile.php
示例9: session_start
<?php
session_start();
require('db.class.php/db.class.php');
$DB = new DB();
function getAddress(){
/*** check for https ***/
$protocol = $_SERVER['HTTPS'] == 'on' ? 'https' : 'http';
/*** return the full address ***/
return $protocol.'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
}
if(isset($_REQUEST['logout'])){
unset($_SESSION['loggedin']);
}
if(!isset($_SESSION['loggedin']) || strlen(trim($_SESSION['loggedin'])) == 0){
$_SESSION['referer'] = getAddress();
header('Location: /riot/jobtracker/login.php');
}
?>
开发者ID:rcroxyosox,项目名称:jobtracker,代码行数:24,代码来源:police.php
示例10: chr
}
echo '</td>
</tr>' . chr(10);
echo '<tr>
<td align="right"><b>' . _('E-mail') . ':</b> </td>
<td>';
echo $entry['invoice_email'];
echo '</td>
</tr>' . chr(10);
echo '<tr>
<td align="right"><b>' . _('Address') . ':</b> </td>
<td>';
if ($entry['invoice_address_id'] == 0) {
echo '<i>' . _('Non selected') . '</i>';
} else {
$address = getAddress($entry['invoice_address_id']);
if (count($address)) {
echo nl2br($address['address_full']);
} else {
echo _('Address not found');
}
}
echo '</td>
</tr>' . chr(10);
echo '<tr>
<td align="right"><b>' . _('Your referance') . ':</b> </td>
<td>';
echo $entry['invoice_ref_your'];
echo '</td>
</tr>' . chr(10);
echo '<tr>
开发者ID:HNygard,项目名称:JM-booking,代码行数:31,代码来源:entry_old-081216.php
示例11: rgba
echo ' <img id="image" src="http://graph.facebook.com/' . $pid . '/picture?type=large" class="avatar" style="padding: 5px">';
echo ' </div>';
echo ' <div class="wall-right">';
echo ' <div style="height: 50%; white-space: nowrap;">';
echo ' <span style="padding-right: 5px; float: right; color: rgba(0,0,0,0.45);">';
$d = substr($j2['time'], 0, 10);
if ($d == date('Y-m-d')) {
echo ' 今天 ';
} else {
if ($d == date('Y-m-d', strtotime('yesterday'))) {
echo ' 昨天 ';
} else {
echo ' ' . $d . ' ';
}
}
echo substr($j2['time'], strrpos($j2['time'], ' '), 6);
echo '</span>';
echo ' <span style="float: left;"><b>乘客: ' . $name . '</b></span><br/>';
echo ' </div>';
echo ' <div style="height: 50%;">';
echo ' <span style="float: left;">共乘距離: ' . $dis . '公尺</span><br/>';
echo ' <button class="mdl-button mdl-js-button mdl-button--icon" style="color: #00AAAA; float: right;"><i class="material-icons">info</i></button>';
echo ' <span style="text-align: left; color: rgba(0,0,0,0.75);">起點:<br/>' . getAddress(json_encode($path[0])) . '號<br/></span>';
echo ' <span style="text-align: left; color: rgba(0,0,0,0.75);">終點:<br/>' . getAddress(json_encode($path[count($path) - 1])) . '號</span>';
echo ' </div>';
echo ' </div>';
echo '</div>';
$index++;
}
}
}
开发者ID:s8w1e2ep,项目名称:newCarpool,代码行数:31,代码来源:history_wall.php
示例12: switch
switch ($step) {
case "send":
$tts = 0;
$start = microtime(true);
$dontlog = 0;
if (!($handler = @fopen('logs/list' . $list_id . '-msg' . $msg_id . '.txt', 'a+'))) {
$dontlog = 1;
}
$limit = $row_config_globale['sending_limit'];
$mail = new PHPMailer();
$mail->CharSet = $row_config_globale['charset'];
$mail->PluginDir = "include/lib/";
$newsletter = getConfig($cnx, $list_id, $row_config_globale['table_listsconfig']);
$mail->From = $newsletter['from_addr'];
$mail->FromName = strtoupper($row_config_globale['charset']) == "UTF-8" ? $newsletter['from_name'] : iconv("UTF-8", $row_config_globale['charset'], $newsletter['from_name']);
$addr = getAddress($cnx, $row_config_globale['table_email'], $list_id, $begin, $limit);
switch ($row_config_globale['sending_method']) {
case "smtp":
$mail->IsSMTP();
$mail->Host = $row_config_globale['smtp_host'];
if ($row_config_globale['smtp_auth']) {
$mail->SMTPAuth = true;
$mail->Username = $row_config_globale['smtp_login'];
$mail->Password = $row_config_globale['smtp_pass'];
}
break;
case "smtp_gmail":
$mail->IsSMTP();
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'tls';
$mail->Host = "smtp.gmail.com";
开发者ID:Arnaud69,项目名称:phpmynewsletter-2.0,代码行数:31,代码来源:send.php
示例13: switch
<?php
require_once 'connect.php';
switch ($_GET["queryName"]) {
case "getAddress":
getAddress($_GET["customerId"]);
break;
}
//-------------------------------------------------------------------------------------------------------------
// HIGHEST SLIDE
//-------------------------------------------------------------------------------------------------------------
function getAddress($customerId)
{
$query = mysql_query("SELECT address FROM customer WHERE customerId = '" . $customerId . "';");
$result = mysql_fetch_array($query);
echo $_GET['callback'] . '(' . "{'address' :'" . $result['address'] . "'}" . ')';
}
?>
开发者ID:Omarski,项目名称:scanTrackerV1,代码行数:17,代码来源:queries.php
示例14: templateAssignEntry
//.........这里部分代码省略.........
${$var}->assign('user_assigned_any', true);
}
${$var}->assign('user_assigned_names', implode(', ', $names));
${$var}->assign('user_assigned_names2', implode(', ', $names2));
${$var}->assign('customer_id', $entry['customer_id']);
${$var}->assign('customer_name', $entry['customer_name']);
${$var}->assign('contact_person_name', $entry['contact_person_name']);
${$var}->assign('contact_person_phone', $entry['contact_person_phone']);
${$var}->assign('contact_person_email', $entry['contact_person_email']);
${$var}->assign('customer_municipal_num', $entry['customer_municipal_num']);
${$var}->assign('customer_municipal', $entry['customer_municipal']);
${$var}->assign('created_by', $entry['created_by']);
// created_by_name
$user = getUser($entry['created_by']);
if (count($user)) {
${$var}->assign('created_by_name', $user['user_name']);
} else {
${$var}->assign('created_by_name', '');
}
${$var}->assign('time_created', $entry['time_created']);
${$var}->assign('edit_by', $entry['edit_by']);
// Edit_by_names
$names = array();
foreach ($entry['edit_by'] as $user_id) {
$user = getUser($user_id);
if (count($user)) {
$names[] = $user['user_name'];
} else {
$names[] = 'ERROR';
}
}
if (!count($names)) {
$names[] = _('Nobody');
}
${$var}->assign('edit_by_names', implode(', ', $names));
${$var}->assign('time_last_edit', $entry['time_last_edit']);
${$var}->assign('user_last_edit', $entry['user_last_edit']);
$user = getUser($entry['user_last_edit']);
if (count($user)) {
${$var}->assign('user_last_edit_name', $user['user_name']);
} else {
${$var}->assign('user_last_edit_name', '');
}
${$var}->assign('rev_num', $entry['rev_num']);
${$var}->assign('invoice', $entry['invoice']);
if ($entry['invoice'] == '1') {
${$var}->assign('invoice2', true);
${$var}->assign('invoice3', _('yes'));
} else {
${$var}->assign('invoice2', false);
${$var}->assign('invoice3', _('no'));
}
${$var}->assign('invoice_status', $entry['invoice_status']);
switch ($entry['invoice_status']) {
case '0':
${$var}->assign('invoice_status2', _('not to be made'));
break;
case '1':
${$var}->assign('invoice_status2', 'skal lages, ikke klar');
break;
case '2':
${$var}->assign('invoice_status2', 'skal lages, klar til fakturering');
break;
case '3':
${$var}->assign('invoice_status2', 'faktura laget og sendt');
break;
case '4':
${$var}->assign('invoice_status2', 'betalt');
break;
}
${$var}->assign('invoice_electronic', $entry['invoice_electronic']);
if ($entry['invoice_electronic'] == '1') {
${$var}->assign('invoice_electronic2', true);
${$var}->assign('invoice_electronic3', _('yes'));
} else {
${$var}->assign('invoice_electronic2', false);
${$var}->assign('invoice_electronic3', _('no'));
}
${$var}->assign('invoice_email', $entry['invoice_email']);
${$var}->assign('invoice_comment', $entry['invoice_comment']);
${$var}->assign('invoice_internal_comment', $entry['invoice_internal_comment']);
${$var}->assign('invoice_ref_your', $entry['invoice_ref_your']);
${$var}->assign('invoice_address_id', $entry['invoice_address_id']);
$invoice_address = getAddress($entry['invoice_address_id']);
if (count($invoice_address)) {
${$var}->assign('invoice_address', $invoice_address['address_full']);
} else {
${$var}->assign('invoice_address', '');
}
${$var}->assign('invoice_content', $entry['invoice_content']);
${$var}->assign('mva_vis', $entry['mva_vis']);
${$var}->assign('mva', $entry['mva']);
${$var}->assign('mva_grunnlag', $entry['mva_grunnlag']);
${$var}->assign('mva_grunnlag_sum', $entry['mva_grunnlag_sum']);
${$var}->assign('faktura_belop_sum', $entry['faktura_belop_sum']);
${$var}->assign('faktura_belop_sum_mva', $entry['faktura_belop_sum_mva']);
${$var}->assign('eks_mva_tot', $entry['eks_mva_tot']);
${$var}->assign('grunnlag_mva_tot', $entry['grunnlag_mva_tot']);
}
}
开发者ID:HNygard,项目名称:JM-booking,代码行数:101,代码来源:template.php
示例15: getNameIDs
<?php
// grab array of library name ids (login names)
$name_id = getNameIDs();
// loop through these for the panel display
for ($i = 0; $i < count($name_id); $i++) {
// smaller functions used for future flexibility
$nameid = $name_id[$i];
$id = getID($name_id[$i]);
$url = getURL($name_id[$i]);
$name = getName($name_id[$i]);
$building = getBuilding($name_id[$i], 'at ');
$description = getDescription($name_id[$i]);
$notes = getHoursNotes($name_id[$i]);
$map = getMapCode($name_id[$i]);
$address = getAddress($name_id[$i]);
$phone = getPhone($name_id[$i]);
$accessurl = getAccessURL($name_id[$i]);
$currentdate = date('Y-m-d');
$currenttime = date('H:i:s');
?>
<a name="view-<?php
echo $nameid;
?>
"></a>
<div id="<?php
echo $nameid;
?>
" class="branch">
开发者ID:ubc-library,项目名称:LibraryHoursLocations,代码行数:29,代码来源:core.inc.php
示例16: setFrom
public function setFrom( $x ) {
$this-> setFromName(getName($x));
$this-> setFromAddress(getAddress($x));
}
开发者ID:revned,项目名称:orangephp,代码行数:4,代码来源:Email.php
示例17: sentora_LoginLink
function sentora_LoginLink($params)
{
echo '<a href="' . getAddress($params) . '/" target="_blank" style="color:#cc0000">Login to Control Panel</a>';
}
开发者ID:nmsde,项目名称:sentora-whmcs,代码行数:4,代码来源:sentora.php
示例18: getAddress
<?php
function getAddress()
{
$apiAddr = ["url" => "http://api.ipify.org/?format=json"];
$response = json_decode(file_get_contents($apiAddr["url"]), true);
echo $response["ip"];
}
?>
<html>
<head>
<title>SHOW YOUR GLOBAL IP ADRESS</title>
</head>
<body>
<p>YOUR GLOBAL IP ADDRESS IS <b><?php
getAddress();
?>
</b></p>
</body>
</html>
开发者ID:rikeidanshiyamahei,项目名称:mypracticephp,代码行数:20,代码来源:showGlobalIPAdress.php
示例19: BOOKING
echo '(BID' . $id . ') UKJENT BOOKING (ikke funnet i databasen)';
} else {
echo date('d-m-Y', $thisentry['time_start']) . ' - ' . '<a href="entry.php?entry_id=' . $thisentry['entry_id'] . '">' . $thisentry['entry_name'] . '</a>' . ' (BID' . $id . ')';
}
echo '<br>';
break;
}
}
exit;
}
foreach ($to_invoice as $invoice_var => $invoice_value) {
$invoice->{$invoice_var} = $invoice_value;
}
$new_datafrom = true;
if ($invoice->invoice_to_address_id > 0) {
$address = getAddress($invoice->invoice_to_address_id);
if (count($address)) {
$invoice->invoice_to_line1 = $address['address_line_1'];
$invoice->invoice_to_line2 = $address['address_line_2'];
$invoice->invoice_to_line3 = $address['address_line_3'];
$invoice->invoice_to_line4 = $address['address_line_4'];
$invoice->invoice_to_line5 = $address['address_line_5'];
$invoice->invoice_to_line6 = $address['address_line_6'];
$invoice->invoice_to_line7 = $address['address_line_7'];
} else {
$invoice->invoice_to_address_id = '';
}
} else {
$invoice->invoice_to_address_id = '';
}
if ($invoice->invoice_to_customer_id > 0) {
开发者ID:HNygard,项目名称:JM-booking,代码行数:31,代码来源:invoice_create.php
示例20: trim
$company = trim($_GET['company']);
$rawlat = trim($_GET['lat']);
$rawlng = trim($_GET['lng']);
$latlng = getSnappedLatLng($rawlat, $rawlng);
$lat = $latlng[0];
$lng = $latlng[1];
$mVehicle = new Vehicle($vehicle);
if ($mVehicle == null || $mVehicle->getCompany() != $company) {
$setupResponse->status = "FAILURE";
$error = new Error();
$error->reason = "VEHICLE ERROR";
$error->message = "No such vehicle exists";
$result->error = $error;
} else {
if ($mVehicle->getIMEI() == $imei) {
$addressInfo = getAddress($lat, $lng);
$address = $addressInfo->results[0]->formatted_address;
$city = getCity($addressInfo->results[0]);
//echo $address." ".$city;
if ($city != "" && $mVehicle->getCurrentCity() != $city) {
$vehicleId = $mVehicle->getId();
$driver = $mVehicle->getDriver();
Notification::addLocationNotification($driver, $vehicleId, $lat, $lng, $city);
}
if (isset($_GET['accuracy']) && $_GET['accuracy'] <= 20) {
if ($mVehicle->setLocation($lat, $lng, $address, $city) && $mVehicle->addTrack($lat, $lng, $address)) {
$setupResponse->status = "SUCCESS";
$setupResponse->request = "location, track";
}
} else {
if ($mVehicle->setLocation($lat, $lng, $address, $city)) {
开发者ID:rusty1909,项目名称:Navigator,代码行数:31,代码来源:location.php
注:本文中的getAddress函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论