3v4l.org

run code in 300+ PHP versions simultaneously
<?php $matches = []; $string = "#HelloWorld -> helloworld, #Hello_W0rld -> hello_w0rld, #Hello(World -> hello,"; preg_replace_callback("/#([a-z_0-9]+)/i", function($res) use(&$matches) { $matches[] = strtolower($res[1]); }, $string); var_dump($matches); $matches2 = []; $string2 = "@HelloWorld -> helloworld, @Hello_W0rl.d -> hello_w0rl,"; preg_replace_callback("/@([a-z_0-9]+)/i", function($res) use(&$matches2) { $matches2[] = strtolower($res[1]); }, $string2); var_dump($matches2);
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(10) "helloworld" [1]=> string(11) "hello_w0rld" [2]=> string(5) "hello" } array(2) { [0]=> string(10) "helloworld" [1]=> string(10) "hello_w0rl" }

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:
59.9 ms | 401 KiB | 8 Q