<!DOCTYPE html>
<html>
<body>
<?php
$str = "Hello world!";
echo chunk_split($str,6,"...");
?>
</body>
</html>