第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

使用 substr 抓取前 x 個(gè)字符時(shí)如何跳過 HTML 標(biāo)簽

使用 substr 抓取前 x 個(gè)字符時(shí)如何跳過 HTML 標(biāo)簽

PHP
墨色風(fēng)雨 2023-09-08 21:48:38
在一些博客文件中,我在 500 個(gè)字符后使用“閱讀更多”按鈕。要從字符串(即博客消息)中獲取前 500 個(gè)字符,我使用substr如下所示:$blog_message_reduced = substr($blog_message, 0, 500);該字符串$blog_message如下所示:lorem ipsum is simply dummy text of the printing and typesetting industry <img src="data/uploads/image.jpg" class="img-responsive" style="width: 100%" /> and some more text behind the image....有時(shí),當(dāng)我撰寫博客文章時(shí),500 個(gè)字符的限制恰好位于img 標(biāo)簽內(nèi)。$blog_message_reducedHTML 輸出類似于:lorem ipsum is simply dummy text of the <img src="data/uplo在上面的例子中, “uploads”一詞的o已達(dá)到 500 。所以我正在尋找一種方法,img在substr使用 500 進(jìn)行裁剪時(shí)忽略標(biāo)簽。(img達(dá)到 500 時(shí)切勿剪切標(biāo)簽;在這種情況下,請(qǐng)?jiān)跇?biāo)簽后立即剪切img)。我怎樣才能實(shí)現(xiàn)這個(gè)目標(biāo)?
查看完整描述

1 回答

?
炎炎設(shè)計(jì)

TA貢獻(xiàn)1808條經(jīng)驗(yàn) 獲得超4個(gè)贊

在裁剪之前使用 PHP 的strip_tags()進(jìn)行此操作。

<?php


$str = 'lorem ipsum is simply dummy text of the printing and typesetting industry <img src="data/uploads/image.jpg" class="img-responsive" style="width: 100%" /> and some more text behind the image.... ';

$pre = strip_tags($str);

$crop = substr($pre, 0, 100);

echo $crop;


// Output:

// lorem ipsum is simply dummy text of the printing and typesetting industry and some more text behind

或者與一些更高級(jí)的用法相同


<?php


$str = 'lorem ipsum is simply dummy text of the printing and typesetting industry <img src="data/uploads/image.jpg" class="img-responsive" style="width: 100%" /> and some more text behind the image.... ';

echo crop($str, 100, '... (read more)', true, true);


function crop($content, $maxCharacters, $append = '...', $respectWordBoundaries = false, $stripTags = false)

{

? ? if ($stripTags) {

? ? ? ? $content = strip_tags($content);

? ? }


? ? if ($maxCharacters) {

? ? ? ? if (mb_strlen($content, 'utf-8') > abs($maxCharacters)) {

? ? ? ? ? ? $truncatePosition = false;

? ? ? ? ? ? if ($maxCharacters < 0) {

? ? ? ? ? ? ? ? $content = mb_substr($content, $maxCharacters, null, 'utf-8');

? ? ? ? ? ? ? ? if ($respectWordBoundaries) {

? ? ? ? ? ? ? ? ? ? $truncatePosition = strpos($content, ' ');

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? $content = $truncatePosition ? $append . substr($content, $truncatePosition) : $append . $content;

? ? ? ? ? ? } else {

? ? ? ? ? ? ? ? $content = mb_substr($content, 0, $maxCharacters, 'utf-8');

? ? ? ? ? ? ? ? if ($respectWordBoundaries) {

? ? ? ? ? ? ? ? ? ? $truncatePosition = strrpos($content, ' ');

? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? $content = $truncatePosition ? substr($content, 0, $truncatePosition) . $append : $content . $append;

? ? ? ? ? ? }

? ? ? ? }

? ? }

? ? return $content;

}




查看完整回答
反對(duì) 回復(fù) 2023-09-08
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)