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 git.master
/bin/php-git-master: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-git-master) /bin/php-git-master: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-git-master)
Process exited with code 1.
Output for git.master_jit, rfc.property-hooks
Array ( [0] => product_type : APPLIANCE_ACCESSORY : CLEANING_AGENT [1] => ean : 400650819XXXX : 400650819XXXX [2] => item_package_quantity : 5 : 10 )

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
32.4 ms | 406 KiB | 5 Q