0
ポスト値を変数に代入できる方法はありますか?ポスト値をグローバル変数として割り当てる方法
私の現在のコード。
global $CustomShippingRate;
$CustomShippingRate = empty($_POST['custom-shipping']) ? 0 : floatval($_POST['custom-shipping']);
現在、私はエラーを取得する:
error: CustomShippingRate uninitialized
error: Exception has occurred. Notice: Undefined variable: CustomShippingRate
'$ GLOBALS ['CustomShippingRate']'を見て、直接設定して使用することをお勧めします。 – RememberOfLife
[globals php help](https://stackoverflow.com/questions/1753530/globals-php-help)の可能な複製 – mickmackusa