Logger para ver Nosotros
This commit is contained in:
@ -17,11 +17,11 @@ class Nosotros {
|
||||
$max_phrase = 50;
|
||||
if (strlen($nosotros) > $min) {
|
||||
$half = strlen($nosotros) / 2;
|
||||
$pos = strpos($nosotros, '.', $half);
|
||||
if ($pos > $half + $max_phrase) {
|
||||
$pos = strrpos($nosotros, '.', -$half);
|
||||
$pos = mb_strpos($nosotros, '.', $half); // Siguiente punto despues de la mitad
|
||||
if ($pos > $half + $max_phrase) { // Si está muy lejos de la mitad busca otra posicion
|
||||
$pos = mb_strrpos($nosotros, '.', -$half) + 1; // Punto antes de la mitad
|
||||
}
|
||||
$nosotros = $this->str_split_unicode($nosotros, $pos, '-');
|
||||
$nosotros = $this->str_split_unicode($nosotros, $pos);
|
||||
if (count($nosotros) > 2) {
|
||||
$s1 = array_shift($nosotros);
|
||||
$nosotros = [$s1, implode('', $nosotros)];
|
||||
|
Reference in New Issue
Block a user