Flesch-Kincaid Readability: Improve PHP function

前端 未结 4 1219
一生所求
一生所求 2021-02-09 04:39

I wrote this PHP code to implement the Flesch-Kincaid Readability Score as a function:

function readability($text) {
    $total_sentences = 1; // one full stop =         


        
4条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-09 05:36

    Take a look at the PHP Text Statistics class on GitHub.

提交回复
热议问题