Longueur de chaîne limite PHP
if (strlen($str) > 10)
$str = substr($str, 0, 7) . '...';
Indian Gooner
if (strlen($str) > 10)
$str = substr($str, 0, 7) . '...';
echo mb_strimwidth("Hello World", 0, 10, "...");
// output: "Hello W..."