Multiply Function Results in PHP

前端 未结 3 921
渐次进展
渐次进展 2021-01-25 16:00

I\'m still beginner in PHP. I have a small problem, I would to multiply the value get_formatted_order_total(); with 3.75 and what I did is

get_form         


        
3条回答
  •  清酒与你
    2021-01-25 16:29

    Try so

    echo get_formatted_order_total() * 3.75;
    

    Without ; after (). ; should be after 3.75

提交回复
热议问题