可能重复:
PHP 中的乘法函数结果
我还是 PHP 的初学者。我有一个小问题,我想将该值乘以get_formatted_order_total();
3.75,而我所做的是(这是错误的)
get_formatted_order_total(); * 3.75
伙计们帮我解决这个代码
<?php
function get_formatted_order_total() {
return 2;
}
echo get_formatted_order_total() * 3.75;
它工作得很好!但问题是输出是7.5。
我差点忘了提及 for 的值formatted_order_total();
包含在“$”和数字中
这是代码
<li class="total">
<?php _e('Total:', 'woocommerce'); ?>
<strong><?php echo $order->get_formatted_order_total(); ?></strong>
谢谢你