我有一个数组说
array1(asd,ard,f_name,l_name)
现在我想将一些值替换为
asd 与协议开始日期
f_name 与名字。
l_name 与姓氏。
我所做的是这个,但它没有检查第二个 if 条件
for($i = 0; $i < count($changedvalue);$i++){
//Check if the value at the 'ith' element in the array is the one you want to change
//if it is, set the ith element to some value
if ($changedvalue[$i] == 'asd')
{$changedvalue[$i] = 'Agreement Start Date';}
elseif ($changedvalue[$i] == 'ard')
{$changedvalue[$i] == 'Agreement Renewal Date';}
}