3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ ['text' => 'I like Apples', 'id' => '102923'], ['text' => 'I like Apples and Bread', 'id' =>'283923'], ['text' => 'I like Apples, Bread, and Cheese', 'id' => '3384823'], ['text' => 'I like Green Eggs and Ham', 'id' =>'4473873'] ]; $search = 'Bread'; var_export( array_filter($array, fn($subarray) => str_contains($subarray['text'], $search)) );
Output for git.master, git.master_jit, rfc.property-hooks
array ( 1 => array ( 'text' => 'I like Apples and Bread', 'id' => '283923', ), 2 => array ( 'text' => 'I like Apples, Bread, and Cheese', 'id' => '3384823', ), )

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:
124.01 ms | 405 KiB | 5 Q