3v4l.org

run code in 300+ PHP versions simultaneously
<?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)); }
Output for 8.0.1 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.27, 8.3.0 - 8.3.15, 8.4.1 - 8.4.2
Array ( [0] => product_type : APPLIANCE_ACCESSORY : CLEANING_AGENT [1] => ean : 400650819XXXX : 400650819XXXX [2] => item_package_quantity : 5 : 10 )

preferences:
73.7 ms | 406 KiB | 5 Q