3v4l.org

run code in 300+ PHP versions simultaneously
<?php function substr_count_array( $haystack, $needle ) { $count = 0; foreach ($needle as $substring) { $count += substr_count( $haystack, $substring); } return $count; } $str = 'The fox jumped over the table and ate a frog'; $search = 'fox ate apple'; $words = explode(' ', $search); $result = substr_count_array($str, $words); $total_words = sizeof($words); if(($result / $total_words) * 100 > 50) { echo 'Related to your query (Total words: '.$total_words.', Words found: '.$result.')'; } else { echo 'Could not find anything related'; }
Output for git.master, git.master_jit, rfc.property-hooks
Related to your query (Total words: 3, Words found: 2)

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