1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| $aCustomers = [
'id' => '2953',
'id_suscriber' => '1',
'company_name' => 'SOMAB',
'company_fullname' => '',
'address1' => 'Rue des Pois, 25',
'address2' => '',
'country' => 'CH',
'zipcode' => '1234',
'locality' => 'Nyon',
'phone' => '',
'fax' => '',
'mail' => '',
'url' => '',
'language' => '',
'notice' => '',
'activity' => 'Fabrication d\'appareillage électrique basse tension.'
];
$aCustomers = array_intersect_key($aCustomers, ['company_name'=>'x', 'country'=>'x', 'locality'=>'x', 'phone'=>'x', 'fax'=>'x', 'mail'=>'x']);
print_r($aCustomers);
// Array
// (
// [company_name] => SOMAB
// [country] => CH
// [locality] => Nyon
// [phone] =>
// [fax] =>
// [mail] =>
// ) |
Partager