我想要收到的输出是
"The Interest Rates are:
0.0525
0.0550
0.0575"
这将继续$InterestRate7
值。我尝试将新的数组元素与旧的利率($InterestRate1 = 0.0525; $RatesArray[1] = $InterestRate1)
相关联,但它仍然不适用于我。这是我的代码以获得额外的帮助。
<?php
$InterestRate1 = 0.0525;
$InterestRate2 = 0.0550;
$InterestRate3 = 0.0575;
$InterestRate4 = 0.0600;
$InterestRate5 = 0.0625;
$InterestRate6 = 0.0650;
$InterestRate7 = 0.0700;
$RatesArray = array(
$RatesArray[1] = "0.0525";
$RatesArray[2] = "0.0550";
$RatesArray[3] = "0.0575";
$RatesArray[4] = "0.0600";
$RatesArray[5] = "0.0625";
$RatesArray[6] = "0.0650";
$RatesArray[7] = "0.0700";);
echo $RatesArray[1];
?>
答案 0 :(得分:0)
array()构造与你在这里的工作方式不同。尝试类似于php文档http://php.net/manual/en/language.types.array.php
中的示例$RatesArray = array(
1 => "0.0525",
2 => "0.0550",
3 => "0.0575");