Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
новая строчка, или<br>перенос на новую строку.
<?php
$myvar = "слово1 слово2 слово3 слов...";
$var_exploded = explode( $myvar, " " );
$count = $i = 0;
$finish_string = "";
while ( $count < 200 )
{
$count += strlen( $var_exploded[$i++] ) + 1;
$finish_string .= $var_exploded[$i] + " ";
}
?>
function GetOnlyPart($par_String, $par_Len) {
$l_Result = preg_replace("|(.+)\s\S+|", "$1", (substr(strip_tags(html_entity_decode($par_String)), 0, $par_Len)));
return $l_Result;
}