本文整理汇总了PHP中AdminController::currencyConverter方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminController::currencyConverter方法的具体用法?PHP AdminController::currencyConverter怎么用?PHP AdminController::currencyConverter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminController
的用法示例。
在下文中一共展示了AdminController::currencyConverter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: empty
</td>
<td><?php
echo $row['order_id'];
?>
</td>
<td><?php
echo $row['txn_id'];
?>
</td>
<td><?php
echo $row['payment_status'];
?>
</td>
<td><?php
echo 'ZAR ' . number_format($adminController->currencyConverter($row['currency'], 'ZAR', $row['room_price'] - $row['discount']), 2, '.', ',');
?>
</td>
<td><?php
echo empty($row['firstname']) && empty($row['lastname']) ? $row['user_email'] : sprintf('%s %s', $row['firstname'], $row['lastname']);
?>
</td>
<td><?php
echo $row['listing_email'];
?>
</td>
<td>
<a class="btn btn-primary" href='view_orders.php?q=<?php
echo base64_encode($row['order_id']);
?>
'>
示例2:
echo 'D B & B';
break;
case '5':
echo 'All Meals';
break;
case '6':
echo 'All Meals and Activities';
break;
default:
echo '-';
break;
}
?>
<br />
<strong>Price</strong>: <?php
echo !empty($order['room_price']) ? 'ZAR ' . number_format($adminController->currencyConverter($order['currency'], 'ZAR', $order['room_price']), 2, '.', ',') : '-';
?>
<br />
<strong>Discount</strong>: <?php
echo !empty($order['discount']) ? 'ZAR ' . number_format($adminController->currencyConverter($order['currency'], 'ZAR', $order['discount'], 2, '.', ',')) : '-';
?>
<br />
<strong>Check In:</strong>: <?php
echo !empty($order['check_in_date']) ? mysql_escape_string($order['check_in_date']) : '-';
?>
<br />
<strong>Check Out</strong>: <?php
echo !empty($order['check_out_date']) ? mysql_escape_string($order['check_out_date']) : '-';
?>