3v4l.org

run code in 300+ PHP versions simultaneously
<?php function htmlWrapThing($str, $size){ $html = false; $i = 0; $chars = str_split($str); $return = ""; $break = false; $tag = ""; foreach($chars as $char){ if($char=="<") $html = true; if($char==">") $html = false; if($html) $t++; if($html && $char!="/" && $t > 1){ $tag .= $char; } if(!$html) $i++; $return .= $char; if($i==$size) $break = true; if($char == " " && !$html && $break){ $return .= '</'.$tag.'>'."<br><br>".'<'.$tag.'>'; $i=0; $break = false; } $tag = ""; } return $return; } $str = "<h1>hilo everybody how is everyone doing tonight?</h1><p>hello world how is everyone doing today</p><p>hello world how is everyone doing today</p><p>hello world how is everyone doing today</p><br><br />"; echo htmlWrapThing($str,10);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $t in /in/X8KXr on line 13 <h1>hilo everybody </><br><br><>how is everyone </><br><br><>doing tonight?</h1><p>hello </><br><br><>world how </><br><br><>is everyone </><br><br><>doing today</p><p>hello </><br><br><>world how </><br><br><>is everyone </><br><br><>doing today</p><p>hello </><br><br><>world how </><br><br><>is everyone </><br><br><>doing today</p><br><br />

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