0

目标。多次(在多个地方)需要检查数组键的值,并根据里面的值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,有值IEGB。所以需要呼应货币EURGBP. 但只有回声GBP

4

1 回答 1

3

第一个问题:

if( in_array($trim_result_vat_country_code), $country_codes_with_euro_currency))

应该

if( in_array($trim_result_vat_country_code, $country_codes_with_euro_currency))

in_array函数中的第二个参数应该是一个array.

第二个问题:

foreach($data_pvn_1_ii_each_invoice_debit as $i => $result){
  $trim_result_vat_country_code = trim($result[VatCodeCountryCode]);
}

您上面的代码只保存最后一条记录。这就是myTest函数只返回最后一条记录的原因。

解决方案 :

<?php foreach($data_pvn_1_ii_each_invoice_debit as $i => $result){?>
<tr><td>
<?php echo myTest($result['VatCodeCountryCode']); ?>
</td></tr>
<tr><td>content of other td</td></tr>
<?php }?>

修改你的myTest功能

function myTest($trim_result_vat_country_code) {
    global $country_codes_with_euro_currency;
    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';
    }
}
于 2013-08-01T11:25:45.980 回答