3v4l.org

run code in 300+ PHP versions simultaneously
<?php $words = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam dictum scelerisque sem a mollis. Nulla facilisi. Maecenas ut tempor nunc. Morbi leo nulla, rutrum in libero id, eleifend tempus velit. Maecenas elementum, erat lobortis dignissim accumsan, odio leo suscipit neque, eu ornare odio ligula a augue."; counter("Lorem", $words); function counter($find,$words) { echo "Total words: " . str_word_count($words) . "\n"; echo "Total letters: " . strlen($words) . "\n"; $vec = explode(" ", $words); if (in_array($find, $vec)) echo $find . " find in position " . (array_search($find, $vec) + 1) . in_array($find, $vec); else echo $find . " not founded"; return; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Total words: 46 Total letters: 308 Fatal error: Uncaught Error: Call to undefined function  in_array() in /in/PBnYO:12 Stack trace: #0 /in/PBnYO(3): counter('Lorem', 'Lorem ipsum dol...') #1 {main} thrown in /in/PBnYO on line 12
Process exited with code 255.

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