标签: php
我有一个值为85.25的变量$按钮,我希望在其他变量中得到这个值。
我尝试过以下但没有从$ button
$button = '85.25'; $orderAmount = $button;
目标是当我打印$ orderAmount时,它应该打印 85.25
我是php新手,对不起我的问题我知道这是基础知识。
答案 0 :(得分:0)
$button = 85.25; echo $orderAmount = $button;