溫馨提示×

php substr截取后如何添加省略號

PHP
小樊
93
2024-06-18 17:57:51
欄目: 編程語言

你可以使用PHP的substr函數(shù)截取字符串,然后在字符串末尾添加省略號。以下是一個(gè)示例代碼:

$text = "This is a long text that needs to be shortened.";
$length = 20;

if (strlen($text) > $length) {
    $shortened_text = substr($text, 0, $length) . "...";
} else {
    $shortened_text = $text;
}

echo $shortened_text;

在上面的示例中,我們首先判斷原始文本的長度是否大于指定的長度。如果是,則使用substr函數(shù)截取指定長度的字符串,并在末尾添加省略號。如果不是,則保持原始文本不變。最后,輸出截取后的文本。

0