3v4l.org

run code in 300+ PHP versions simultaneously
<?php function htmlWrapThing($str, $size, $breaking){ $html = false; $i = 0; $t = 0; $tagcount = 0; $chars = str_split($str); $return = ""; $break = false; $tag = ""; $newtag=""; foreach($chars as $char){ if($char=="<"){ $tagcount++; $html = true; } if($char==">") $html = false; if(($tagcount/2)==1){ $tagcount = 0; $tag = ""; } if($html) $t++; if($html && $char!="/" && $t > 1){ $tag .= $char; $t =0; } if(!$html) $i++; $return .= $char; if($i==$size) $break = true; if($char == " " && !$html && $break){ if(!isset($tag)||$tag==""){ $return .= $breaking; }else{ $return .= '</'.$tag.'>'.$breaking.'<'.$tag.'>'; } $i=0; $break = false; } } 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 />hello everybody how are you doing today?"; echo htmlWrapThing($str,10, "<br><br>");
Output for git.master, git.master_jit, rfc.property-hooks
<h1>hilo everybody </h><br><br><h>how is everyone </h><br><br><h>doing tonight?</h1><p>hello </<h<><br><br><<h<>world how </<h<><br><br><<h<>is everyone </<h<><br><br><<h<>doing today</p><p>hello </<pp><br><br><<pp>world how </<pp><br><br><<pp>is everyone </<pp><br><br><<pp>doing today</p><p>hello </pp><br><br><pp>world how </pp><br><br><pp>is everyone </pp><br><br><pp>doing today</p><br><br />hello </<r><br><br><<r>everybody </<r><br><br><<r>how are you </<r><br><br><<r>doing today?

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