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; foreach($chars as $char){ if($char=="<") $html = true; if($char==">") $html = false; if($html && $char!="/"){ $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; } } return $return; } $str = "<p>hello world how is everyone doing today</p>"; echo htmlWrapThing($str,10);
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $tag in /in/Q9arh on line 13 <p>hello world </<p><br><br><<p>how is everyone </<p><br><br><<p>doing today</p>

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