Flesch-Kincaid Readability: улучшить функцию PHP
Я написал этот PHP-код для реализации показателя удобочитаемости Flesch-Kincaid как функции: function readability($text) { $total_sentences = 1; // one full stop = two sentences => start with 1 $punctuation_marks = array('.', '?', '!', ':'); foreach ($punctuation_marks as $punctuation_mark) { $total_sentences += substr_count($text, $punctuation_mark); } $total_words = str_word_count($text); $total_syllable = 3; // assuming this value since […]