目标。多次(在多个地方)需要检查数组键的值,并根据里面的值foreach
需要回显货币代码。
有数组(例如),命名$data_pvn_1_ii_each_invoice_debit
Array (
[0] => Array ( [VatCodeCountryCode] => IE [VatCode] =>123456 )
[1] => Array ( [VatCodeCountryCode] => GB [VatCode] =>958725 )
)
这里定义变量,其中包括国家的缩写,其中货币为欧元。
$country_codes_with_euro_currency = array( 'AT', 'BE', 'CY', 'DE', 'EE', 'GR', 'ES', 'FI', 'FR', 'IE', 'IT', 'LU', 'MT', 'NL', 'PT', 'SI', 'SK' );
然后多次(在多个地方)需要检查值[VatCodeCountryCode]
并基于国家代码需要回显货币
起初试图得到[VatCodeCountryCode]
.
foreach($data_pvn_1_ii_each_invoice_debit as $i => $result){
$trim_result_vat_country_code = trim($result[VatCodeCountryCode]);
}
然后函数(函数的一部分)
function myTest($trim_result_vat_country_code) {
if ( in_array($trim_result_vat_country_code), $country_codes_with_euro_currency) ) {
return $currency_code = 'EUR';
}
elseif ( $trim_result_vat_country_code == 'GB' ) {
return $currency_code = 'GBP';
}
}
然后需要回显货币代码(也只是部分代码)
<?php foreach($data_pvn_1_ii_each_invoice_debit as $i => $result){?>
<tr><td>
<?php echo myTest($trim_result_vat_country_code); ?>
</td></tr>
<tr><td>content of other td</td></tr>
<?php }?>
第一个问题:代码不起作用( in_array($trim_result_vat_country_code), $country_codes_with_euro_currency) )
第二个问题:echo myTest($trim_result_vat_country_code);
只返回最后一个结果。对于数组键VatCodeCountryCode
,有值IE
和GB
。所以需要呼应货币EUR
和GBP
. 但只有回声GBP