當前位置: 首頁>>代碼示例>>PHP>>正文


PHP currencies::list_search_active方法代碼示例

本文整理匯總了PHP中currencies::list_search_active方法的典型用法代碼示例。如果您正苦於以下問題:PHP currencies::list_search_active方法的具體用法?PHP currencies::list_search_active怎麽用?PHP currencies::list_search_active使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在currencies的用法示例。


在下文中一共展示了currencies::list_search_active方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: bill_total

function bill_total()
{
    $output = '';
    $total = 0;
    $class = COLOR_TABLE_TOTAL;
    $currencies = new currencies();
    $curr_value = $currencies->list_search_active();
    for (reset($_SESSION['separated']); list($key, $value) = each($_SESSION['separated']);) {
        $total += $_SESSION['separated'][$key]['finalprice'];
    }
    $output .= '
		<tr bgcolor=' . $class . '>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>' . ucfirst(phr('TOTAL')) . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>' . sprintf("%0.2f", $total) . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '></td>
		</tr>
		';
    if (SHOW_CHANGE == 1) {
        //mizuko:needed to show exchange...
        for ($i = 0; $i < count($curr_value); $i++) {
            $output .= '
				<tr bgcolor=' . $class . '>
					<td bgcolor=' . $class . '></td>
					<td bgcolor=' . $class . '>' . $curr_value[$i]['name'] . '</td>
					<td bgcolor=' . $class . '></td>
					<td bgcolor=' . $class . '>' . sprintf("%0.2f", $total / $curr_value[$i]['rate']) . '</td>
					<td bgcolor=' . $class . '></td>
					<td bgcolor=' . $class . '></td>
				</tr>
				';
        }
    }
    if (!isset($_SESSION['discount']) || !isset($_SESSION['discount']['type']) || empty($_SESSION['discount']['type'])) {
        return $output;
    }
    if ($_SESSION['discount']['type'] == "amount") {
        $total_discounted = $total + $_SESSION['discount']['amount'];
        $discount_label = "";
        $discount_number = -$_SESSION['discount']['amount'];
    } elseif ($_SESSION['discount']['type'] == "percent") {
        $total_discounted = $total - $total / 100 * $_SESSION['discount']['percent'];
        $discount_label = $_SESSION['discount']['percent'] . ' %';
        $discount_number = $total / 100 * $_SESSION['discount']['percent'];
    }
    $output .= '
		<tr bgcolor=' . $class . '>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>&nbsp;' . ucphr('DISCOUNT') . ' ' . $discount_label . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>-' . sprintf("%0.2f", $discount_number) . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '></td>
		</tr>
		<tr bgcolor=' . $class . '>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>' . ucphr('TOTAL') . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '>' . sprintf("%0.2f", $total_discounted) . '</td>
		<td bgcolor=' . $class . '></td>
		<td bgcolor=' . $class . '></td>
		</tr>
		';
    return $output;
}
開發者ID:jaimeivan,項目名稱:smart-restaurant,代碼行數:67,代碼來源:bills_waiter.php


注:本文中的currencies::list_search_active方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。