PHP Couper untexteÃ100caractèresanscouper un mot

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Couper untexteÃ100caractèresanscouper un mot相关的知识,希望对你有一定的参考价值。

// Coupe un texte à $longueur caractères, sur les espaces, et ajoute des points de suspension...
function tronque($chaine, $longueur = 120) 
{
 
	if (empty ($chaine)) 
	{ 
		return ""; 
	}
	elseif (strlen ($chaine) < $longueur) 
	{ 
		return $chaine; 
	}
	elseif (preg_match ("/(.{1,$longueur})\s./ms", $chaine, $match)) 
	{ 
		return $match [1] . "..."; 
	}
	else 
	{ 
		return substr ($chaine, 0, $longueur) . "..."; 
	}
}
print tronque("Ceci n'est pas un tuyau",12);
// Renvoie Ceci n'est pas...

以上是关于PHP Couper untexteÃ100caractèresanscouper un mot的主要内容,如果未能解决你的问题,请参考以下文章

PHP Função para formatar moeda

PHP Funciónparaobtenereltamaño de un directorio

PHP mySQL 5导入php-Scriptfür1und1主页服务器

PHP PHP - Limpiarinyecciónsql

PHP Php - Sabreedadsegúnnacimiento

PHP wordpress:funcionesútilesparafunctions.php