如何在PHP中获取变量

时间:2017-10-26 04:04:25

标签: php

我有一个值为85.25的变量$按钮,我希望在其他变量中得到这个值。

我尝试过以下但没有从$ button

获取变量
$button = '85.25';

$orderAmount = $button;

目标是当我打印$ orderAmount时,它应该打印 85.25

我是php新手,对不起我的问题我知道这是基础知识。

1 个答案:

答案 0 :(得分:0)

$button = 85.25;

echo $orderAmount = $button;