예상 읽기 시간 추가(Laravel 단위)
1174 단어 webdevprogramminglaravel
use Illuminate\Support\Str;
Str::macro('readDuration', function(...$text) {
$totalWords = str_word_count(implode(" ", $text));
$minutesToRead = round($totalWords / 200);
return (int)max(1, $minutesToRead);
});
echo Str::readDuration($post->text). ' min read';
마르셀 보시오트🧪
텍스트에 대한 예상 읽기 시간을 제공하는 좋은 문자열 조수 매크로가 있습니다. 200은 성인이 분당 읽는 평균 단어량입니다.
2021년 5월 5일 오전 9:56
참관하는 것을 잊지 마세요.주제에 관한 글을 찾아보세요codelapan.com , web development 잠깐만요.
Reference
이 문제에 관하여(예상 읽기 시간 추가(Laravel 단위)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/hilmi/add-estimated-reading-time-in-laravel-3262텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)