Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
function wraptext($comment,$warp) {
$comment = explode(" ", $comment);
$i = 0; $length = 0;
while ($i <= count($comment)) {
$length += strlen($comment[$i]);
if ($length <= $warp) {
$output .= $comment[$i]." ";
$i++;
} else {
$output .= "\n";
$length = 0;
}
}
return $output;
}