- array_map: documentation ( source)
- array_slice: documentation ( source)
- print_r: documentation ( source)
- preg_match_all: documentation ( source)
- implode: documentation ( source)
<?php
$pattern = '/(\w+) \(Vendeur : \'([^\']*)\' \/ Amazon : \'([^\']*)\'/m';
$s = 'correspondent à l\'ASIN B00WU8XXXX, mais les attributs suivants sont en conflit avec : product_type (Vendeur : \'APPLIANCE_ACCESSORY\' / Amazon : \'CLEANING_AGENT\'), ean (Vendeur : \'400650819XXXX\' / Amazon : \'400650819XXXX\'), item_package_quantity (Vendeur : \'5\' / Amazon : \'10\'';
if(preg_match_all($pattern, $s, $matches, PREG_SET_ORDER)) {
print_r(array_map(fn($m) => implode(" : ", array_slice($m, 1)), $matches));
}