3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Test { public function data($query) { $data = null; for ($i = 1; $i <= 100000; $i++) { $data = $this->format($this->search($this->factory(), $query)); } return var_dump($data); } protected function factory() { return array( 'hello world', 'test 123', 'laravel', 'php', 'twitter', 'liquid', 'twekkisd', 'tekkit', 'minecrtafspeltwrong', 'minecraft', 'java', 'hhvm', 'qwertuop', 'qwerty', 'abc', 'coffee', 'dsmg', 'admin@dsmg.co.uk', 'graham@dsmg.co.uk' ); } protected function search($data, $query) { foreach ($data as $key => $value) { if (strpos($value, $query) === false) { unset($data[$key]); } } return $data; } protected function format($data) { $new = array(); foreach($data as $value) { $tmp = new stdClass; $tmp->val = $value; $new[] = $tmp; } return $new; } } $test = new Test; $test->data('t');
Output for git.master, git.master_jit, rfc.property-hooks
array(8) { [0]=> object(stdClass)#17 (1) { ["val"]=> string(8) "test 123" } [1]=> object(stdClass)#16 (1) { ["val"]=> string(7) "twitter" } [2]=> object(stdClass)#15 (1) { ["val"]=> string(8) "twekkisd" } [3]=> object(stdClass)#14 (1) { ["val"]=> string(6) "tekkit" } [4]=> object(stdClass)#13 (1) { ["val"]=> string(19) "minecrtafspeltwrong" } [5]=> object(stdClass)#12 (1) { ["val"]=> string(9) "minecraft" } [6]=> object(stdClass)#11 (1) { ["val"]=> string(8) "qwertuop" } [7]=> object(stdClass)#10 (1) { ["val"]=> string(6) "qwerty" } }

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:
45.88 ms | 402 KiB | 8 Q