<?php for($limit=10,$str=str_repeat(" ",$limit);$limit>=0;--$limit){ $arr=explode(" ",$str,$limit); $combined=implode(" ",$arr); if($combined !== $str){ throw new LogicException("implode() did not restore the original string. limit: {$limit}"); } }
You have javascript disabled. You will not be able to edit any code.