3v4l.org

run code in 300+ PHP versions simultaneously
<?php $base = '/some/dir'; $path = '/foo/bar'; $protect = array('/bar','/foo','/bob'); foreach($protect as $needle) { echo "Checking for needle $needle in path $path:\n"; $sp = strpos($path,$needle); echo "Strpos result: $sp\n"; if( $sp !==FALSE ) { echo "Path contains the needle\n"; $s=strcmp( $needle, $path ); echo "Strcmp result: $s\n"; if( $s > 0 ) { echo "The path is a subfolder inside the needle"; } else { echo "The path isn't a subfolder inside the needle"; } } else { echo "The path doesn't contain the needle"; } echo "\n\n"; } echo "Check completed"; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Checking for needle /bar in path /foo/bar: Strpos result: 4 Path contains the needle Strcmp result: -1 The path isn't a subfolder inside the needle Checking for needle /foo in path /foo/bar: Strpos result: 0 Path contains the needle Strcmp result: -1 The path isn't a subfolder inside the needle Checking for needle /bob in path /foo/bar: Strpos result: The path doesn't contain the needle Check completed

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