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('123');
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> object(stdClass)#3 (1) { ["val"]=> string(8) "test 123" } }

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